-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
34 lines (34 loc) · 882 Bytes
/
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
{
"name": "wonders",
"version": "0.3.3",
"description": "Build CLI apps with React",
"main": "lib/index.js",
"author": "Vu Tran <[email protected]>",
"license": "MIT",
"files": [
"lib"
],
"scripts": {
"lint": "prettier --single-quote --trailing-comma=es5 --print-width=90 --tab-width=4 --write 'lib/*.js' 'index.js'",
"precommit": "npm run lint",
"start": "./cli.js",
"test": "jest --verbose --coverage"
},
"dependencies": {
"coveralls": "^2.12.0",
"minimist": "^1.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/vutran/wonders"
},
"devDependencies": {
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-wonders": "^0.1.0",
"husky": "^0.13.3",
"jest": "^19.0.2",
"prettier": "^0.22.0"
}
}