-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "leptons",
"version": "0.1.0-beta.6",
"description": "Leptons is an atomic CSS generator",
"homepage": "github.com/cohesivestack/leptons",
"author": "Carlos Forero",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": "^17 || ^16 || ^14.15 || ^12.20"
},
"scripts": {
"test": "jest",
"build": "tsc",
"release": "tsc; npm publish"
},
"bin": {
"leptons": "bin/leptons"
},
"files": [
"bin",
"dist"
],
"repository": {
"type": "git",
"url": "github.com/cohesivestack/leptons"
},
"keywords": [
"css",
"atomic",
"atomic-css",
"typescript",
"javascript"
],
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.5",
"@types/js-yaml": "^4.0.5",
"jest": "^27.4.5",
"jest-cli": "^27.4.5",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"tslint": "^5.20.1",
"typescript": "^4.5.4",
"typescript-json-schema": "^0.52.0",
"ls-engines": "^0.6.5"
},
"dependencies": {
"ajv": "^8.8.2",
"chalk": "^4.0.0",
"chokidar": "^3.5.2",
"class-transformer": "^0.5.1",
"commander": "^8.3.0",
"globby": "^11.0.4",
"js-yaml": "^4.1.0"
}
}