-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "scss-away",
"version": "0.3.4",
"description": "A utility to examine a folder of React components, check corresponding scss files and show orphaned rules.",
"main": "./bin/scss-away.js",
"scripts": {
"babel": "node_modules/.bin/babel-node --presets react,es2015 bin/scss-away.js",
"start": "./bin/scss-away.js",
"istanbul": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha",
"test": "mocha",
"watch": "nodemon --watch bin/ --ext js,jsx,scss --exec 'npm run babel'",
"watch-test": "nodemon --watch test/ --watch bin/ --ext js --exec 'npm run test'"
},
"keywords": [
"sass",
"scss",
"react",
"css",
"html"
],
"bin": {
"scss-away": "./bin/scss-away.js"
},
"author": "Dave Schumaker <daves@hotpads.com>",
"repository": {
"type": "git",
"url": "git@github.com:daveschumaker/scss-away.git"
},
"bugs": {
"url": "https://github.com/daveschumaker/scss-away/issues"
},
"license": "MIT",
"dependencies": {
"argv-parser": "0.1.4",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-register": "6.26.0",
"babel-resolver": "1.1.0",
"colors": "1.3.3",
"css": "2.2.4",
"minimist": "1.2.0",
"node-sass": "^4.11.0",
"sass-thematic": "2.0.4"
},
"devDependencies": {
"istanbul": "0.4.5",
"lodash.isequal": "4.5.0",
"mocha": "^5.2.0"
}
}