-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
77 lines (77 loc) · 1.81 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@ngneat/variabless",
"version": "1.0.1",
"description": "Transform JS/TS/JSON to css variables 💎",
"keywords": [
"css",
"variables",
"ts",
"js",
"json"
],
"bin": {
"variabless": "index.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"contributors:add": "all-contributors add",
"release": "standard-version --infile ./CHANGELOG.md",
"commit": "git-cz",
"prebuild": "npm run clean:dist",
"build": "tsc",
"postbuild": "node ./scripts/post-build.js",
"test": "jest",
"clean:dist": "rm -rf dist"
},
"author": "Shahar Kazaz",
"license": "MIT",
"repository": "https://github.com/ngneat/variabless",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"chalk": "^4.1.0",
"chokidar": "^3.4.3",
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.1",
"flat": "^5.0.2",
"ora": "^5.1.0",
"postcss": "^8.1.4",
"ts-node": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/flat": "^5.0.1",
"all-contributors-cli": "^6.19.0",
"@types/jest": "^26.0.19",
"babel-jest": "^26.6.3",
"git-cz": "^4.7.1",
"husky": "^4.3.0",
"import-conductor": "^2.2.1",
"jest": "^26.4.2",
"jest-ci": "^0.1.1",
"jest-cli": "^26.4.2",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"standard-version": "^9.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"import-conductor --staged",
"prettier --write"
]
}
}