forked from amazingandyyy/leptin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.94 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
60
61
62
63
64
65
{
"name": "crypto-in-node",
"version": "0.0.1",
"description": "This is a crypto built in node, supporting PoW.",
"main": "./dist/index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node ./dist/app/index.js",
"test:watch": "cross-env NODE_ENV=testing jest --watchAll",
"test": "cross-env NODE_ENV=testing npm run eslint:fix && jest --forceExit",
"eslint:fix": "eslint --fix .",
"dev": "babel-watch ./src/app/index.js",
"dev:test": "babel-watch ./src/dev.js",
"build": "babel -d ./dist ./src -s",
"precommit": "npm run eslint:fix",
"prepush": "npm run eslint:fix"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": ["<rootDir>/node_modules/", "<rootDir>/dist/"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/amazingandyyy/crypto-in-node.git"
},
"keywords": [
"blockchain",
"bitcoin",
"ethereum",
"nodejs",
"crypto"
],
"author": "Amazingandyyy <amazingandyyy@gmail.com> (Andy Chen)",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-watch": "^2.0.7",
"cross-env": "^5.1.4",
"eslint": "^4.14.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-es5": "^1.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.5.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"jest": "^22.4.3"
},
"dependencies": {
"body-parser": "^1.18.2",
"crypto-js": "^3.1.9-1",
"elliptic": "^6.4.0",
"express": "^4.16.3",
"uuid": "^3.2.1",
"ws": "^5.1.0"
}
}