-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.97 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
{
"name": "extract-scss-variables",
"version": "0.2.1",
"engines": {
"node": ">=4"
},
"description": "Extract variables from SCSS files",
"keywords": [
"extract",
"scss",
"sass",
"variables",
"node-sass",
"javascript",
"json"
],
"homepage": "https://github.com/EnoahNetzach/extract-scss-variables",
"repository": "https://github.com/EnoahNetzach/extract-scss-variables",
"author": {
"name": "Fabrizio Castellarin",
"url": "https://github.com/EnoahNetzach"
},
"bugs": {
"url": "https://github.com/EnoahNetzach/extract-scss-variables/issues"
},
"license": "ISC",
"main": "./dist/index.js",
"jsnext:main": "./dist/index.es.js",
"module": "./dist/index.es.js",
"files": [
"bin",
"dist"
],
"bin": {
"extract-scss-variables": "./bin/index.js"
},
"scripts": {
"build": "rollup --config rollup.config.js",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"eslint": "eslint ./src",
"flow": "flow",
"prepublish": "npm run build",
"test": "jest --config .jestrc.json"
},
"dependencies": {
"chalk": "^1.1.3",
"commander": "^2.9.0"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.21.0",
"babel-preset-env": "^1.3.3",
"coveralls": "^2.11.15",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-flowtype": "^2.29.2",
"eslint-plugin-import": "^2.2.0",
"flow-bin": "^0.37.4",
"flow-typed": "^2.0.0",
"jest": "^19.0.1",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-json": "^2.1.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^1.0.2",
"uglify-js-harmony": "^2.7.5"
},
"peerDependencies": {
"node-sass": "^3 || ^4"
}
}