-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.61 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.61 KB
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
{
"name": "npm-script_sample",
"version": "1.0.0",
"description": "for test",
"main": "none",
"browserify": {
"transform": [
[
"babelify",
{
"compact": false
}
]
]
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"mkdir": "mkdir -p $path",
"clean:css": "rm -rf ./public/stylesheets",
"clean:js": "rm -rf ./public/javascripts",
"clean": "npm run clean:css && npm run clean:js",
"js:bin:build": "./bin/js-build.sh $filename",
"js:bin:watch": "./bin/js-watch.sh $filename",
"js:bin:uglify": "./bin/js-uglify.sh $filename",
"css:bin:build": "./bin/css-build.sh $filename",
"css:bin:watch": "./bin/css-watch.sh $filename",
"css:bin:minify": "./bin/css-minify.sh $filename",
"watch": "npm run clean && ./bin/watch.sh",
"develop": "npm run clean && ./bin/develop.sh",
"production": "npm run clean && ./bin/production.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/monpy/npm-script_sample.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/monpy/npm-script_sample/issues"
},
"homepage": "https://github.com/monpy/npm-script_sample#readme",
"dependencies": {
"autoprefixer": "^6.3.5",
"babel-plugin-transform-es2015-classes": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"cssnano": "^3.5.2",
"postcss-cli": "^2.5.1",
"postcss-import": "^8.0.2",
"postcss-scss": "^0.1.7",
"precss": "^1.4.0",
"uglify-js": "^2.6.2",
"watchify": "^3.7.0"
}
}