-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.67 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
{
"name": "static-pipeline",
"version": "0.4.7",
"description": "Static assets processing framework and template helper",
"main": "dist/index.js",
"bin": {
"static-pipeline": "./bin/static-pipeline.js"
},
"scripts": {
"test": "babel-node --optional=es7.asyncFunctions,runtime node_modules/mocha/bin/_mocha",
"lint": "eslint bin lib test",
"watch:lint": "onchange '**/.eslintrc' 'bin' 'lib' 'test' -- npm run --silent lint",
"watch:js": "babel --optional=es7.asyncFunctions,runtime lib -w -d dist",
"build:reset": "rm -rfv dist && mkdir -pv dist",
"build": "npm run build:reset && babel --optional=es7.asyncFunctions,runtime lib -d dist",
"predev": "npm run build",
"dev": "npm run watch:js & npm run watch:lint",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/daiweilu/StaticPipeline.git"
},
"keywords": [
"static",
"assets",
"template",
"helper",
"hashing",
"compile"
],
"author": "Daiwei Lu <[email protected]> (http://daiwei.lu/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/daiweilu/StaticPipeline/issues"
},
"homepage": "https://github.com/daiweilu/StaticPipeline",
"dependencies": {
"babel": "5.8.3",
"babel-core": "5.8.3",
"babel-runtime": "5.8.3",
"bluebird": "2.9.25",
"chalk": "1.0.0",
"chokidar": "1.0.1",
"glob": "5.0.6",
"lodash": "3.8.0",
"minimatch": "2.0.8",
"yargs": "3.9.1"
},
"devDependencies": {
"babel-eslint": "^3.1.5",
"chai": "2.3.0",
"eslint": "0.21.1",
"isparta": "3.0.3",
"mocha": "2.2.5",
"onchange": "1.1.0",
"sinon": "1.14.1"
}
}