-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
57 lines (57 loc) · 1.59 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
{
"name": "sass-extract",
"version": "3.0.0",
"description": "Extract structured variables from sass files. Fast and accurate.",
"main": "lib/index.js",
"scripts": {
"peers": "npx npm-install-peers",
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile",
"test": "mocha --require babel-core/register --timeout 10000 --file \"./test/helpers/implementation_iterator.js\"",
"test:fast": "FAST_TEST=true mocha --require babel-core/register",
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 0",
"watch": "mocha --watch --reporter min --require babel-core/register --timeout 10000",
"watch:fast": "FAST_TEST=true mocha --watch --reporter min --require babel-core/register"
},
"repository": "jgranstrom/sass-extract",
"author": "John Granström <[email protected]>",
"keywords": [
"sass",
"scss",
"variables",
"convert",
"extract",
"import",
"json"
],
"license": "MIT",
"engines": {
"node": ">=4"
},
"peerDependencies": {
"node-sass": ">=3.8.0",
"sass": ">=1"
},
"dependencies": {
"bluebird": "^3.7.2",
"fs-monkey": "^1.0.4",
"gonzales-pe": "^4.2.4",
"parse-color": "^1.0.0",
"query-ast": "^1.0.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.2.0",
"chai-subset": "^1.6.0",
"cz-conventional-changelog": "^3.1.0",
"foundation-sites": "6.4.3",
"mocha": "^7.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}