-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.1 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
{
"name": "skeleton-module",
"version": "1.0.1",
"description": "When creating new modules, use this skeletal structure",
"main": "index.js",
"scripts": {
"lint+build+test": "yarn run lint && yarn run build && yarn run test",
"lint": "echo linting... && eslint ./src/**/*.js && echo 'successfully linted'",
"build": "echo building... && babel src/ -d lib/ && echo 'successfully built'",
"prepublish": "yarn run build",
"test": "echo running server tests... && tape test/**/*.js && echo 'successfully completed tests'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zion-coin/skeleton-module.git"
},
"author": "Craig OConnor",
"license": "ISC",
"bugs": {
"url": "https://github.com/zion-coin/skeleton-module/issues"
},
"homepage": "https://github.com/zion-coin/skeleton-module#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.0.0",
"flow-bin": "^0.48.0",
"random-words": "0.0.1",
"rlp": "^2.0.0",
"sha3": "^1.2.0",
"tape": "^4.6.3"
}
}