-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.8 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": "swa",
"version": "0.1.1",
"description": "Scaffold for web application",
"main": "./lib/cli.js",
"bin": {
"swa": "bin/swa"
},
"scripts": {
"lint": "fecs src test/**/*.spec.js --type=js",
"compile": "shx rm -rf lib && babel src -d lib --source-maps inline --copy-files",
"test": "npm run compile && ./node_modules/.bin/_mocha --compilers js:babel-core/register --recursive",
"coverage": "npm run compile && ./node_modules/.bin/babel-node ./node_modules/.bin/babel-istanbul cover _mocha 'test/**/*.spec.@(js|es|es6)'",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"sourcemap": "./node_modules/.bin/babel src -d lib -s",
"watch": "shx rm -rf lib && babel src -d lib --copy-files -w",
"prepublish": "npm run compile"
},
"keywords": [
"scaffold",
"scaffold-framework",
"tools"
],
"repository": {
"type": "git",
"url": "https://github.com/ielgnaw/swa"
},
"bugs": {
"url": "https://github.com/ielgnaw/swa/issues"
},
"homepage": "https://github.com/ielgnaw/swa",
"dependencies": {
"async": "^2.4.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-istanbul": "^0.12.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^3.5.0",
"chalk": "^1.1.3",
"consolidate": "^0.14.5",
"cross-spawn": "^5.1.0",
"ejs": "^2.5.6",
"fecs": "^1.2.3",
"figlet": "^1.2.0",
"inquirer": "^3.3.0",
"metalsmith": "^2.3.0",
"metalsmith-copy": "^0.3.0",
"mocha": "^3.3.0",
"ora": "^1.2.0",
"rimraf": "^2.6.1",
"shx": "^0.2.2",
"yargs": "^7.1.0"
},
"author": "ielgnaw <[email protected]>"
}