forked from ryankshaw/brandable_css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.3 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
{
"name": "brandable_css",
"version": "0.1.0",
"description": "This is what we use to compile sass in canvas-lms with all our variants and custom theme editor css",
"scripts": {
"build": "./node_modules/.bin/standard --verbose && ./node_modules/.bin/babel src --out-dir lib",
"dev": "npm run build -- --watch",
"prepublish": "npm run build",
"release": "npm version patch && git push && npm publish",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "ryankshaw/brandable_css",
"author": "Ryan Shaw <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/ryankshaw/brandable_css",
"bin": "./bin/brandable_css",
"files": [
"bin",
"lib",
"src"
],
"standard": {
"parser": "babel-eslint"
},
"dependencies": {
"autoprefixer": "^7.0.0",
"bluebird": "^3.4.7",
"chalk": "^2.1.0",
"chokidar": "^1.6.1",
"commander": "^2.9.0",
"debug": "^3.1.0",
"fs-extra-promise": "^1.0.1",
"glob": "^7.1.1",
"js-yaml": "^3.8.2",
"lodash": "^4.17.4",
"node-sass": "^4.5.0",
"postcss": "^6.0.1",
"postcss-url": "^7.1.2",
"rev-hash": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-eslint": "^8.0.1",
"babel-preset-env": "^1.1.11",
"standard": "^10.0.2"
}
}