-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
58 lines (58 loc) · 1.65 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
{
"name": "field.cli",
"version": "0.1.7",
"description": "DevIOTA Field Client",
"main": "dist/field.js",
"homepage": "https://semkodev.com",
"author": "Roman Semko <[email protected]> (http://twitter.com/RomanSemko)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/SemkoDev/field.cli.git"
},
"watch": {
"start": "src"
},
"bin": {
"field": "./dist/index.js"
},
"files": ["src", "dist", "README.md", "LICENSE.md"],
"scripts": {
"start": "node src/index.js",
"watch": "npm-watch start",
"test": "jest -b",
"build":
"rimraf dist/ && babel ./src --out-dir dist/ --ignore ./node_modules --ignore __tests__ --copy-files",
"make:binaries":
"rimraf builds/ && pkg -t node6-linux,node6-win,node6-macos -o builds/field-`cat package.json | jq -r '.version'` dist/field.js",
"make":
"npm run test && npm run fix && npm run build && npm run make:binaries",
"fix":
"prettier --single-quote --write src/**/*.js src/*.js package.json *.md"
},
"dependencies": {
"colors": "^1.1.2",
"commander": "^2.13.0",
"hoxy": "^3.2.2",
"ini": "^1.3.5",
"iota.lib.js": "^0.4.7",
"ip": "^1.1.5",
"node-machine-id": "^1.1.10",
"request": "^2.83.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"jest": "^22.2.1",
"npm-watch": "^0.3.0",
"pkg": "^4.3.0",
"prettier": "^1.10.2",
"rimraf": "^2.6.2"
},
"jest": {
"testMatch": ["**/__tests__/**/*-test.js?(x)"],
"roots": ["src"]
},
"keywords": ["blockchain", "IOTA", "tangle", "p2p"]
}