-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.03 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
66
67
{
"name": "lambocoin",
"version": "0.0.17",
"description": "A Basic Cryptocurrency Built with Lotion based on awesome Tendermint.",
"main": "./dist/app.js",
"scripts": {
"start": "cross-env NODE_ENV=production node ./dist/init.js",
"test": "eslint --fix .",
"cmd": "src/cmd.js",
"build": "babel -d ./dist ./src -s && cp ./src/data.json ./dist/data.json",
"dev": "babel-watch ./src/init.js",
"release": "git pull && npm run test && git add . && npm run build && git commit -m 'deploy' && git push origin master && npm version patch && npm publish",
"gen": "babel-watch ./src/faker.js"
},
"bin": "dist/cmd.js",
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reforest/lambocoin.git"
},
"author": {
"name": "Amazingandyyy",
"email": "amazingandyyy@gmail.com",
"url": "https://amazingandyyy.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/reforest/lambocoin/issues"
},
"homepage": "https://github.com/reforest/lambocoin#readme",
"dependencies": {
"axios": "^0.18.0",
"celadon": "0.0.15",
"common-tags": "^1.7.2",
"cross-env": "^5.1.4",
"crypto": "^1.0.1",
"dotenv": "^5.0.1",
"lotion": "^0.1.17",
"minimist": "^1.2.0",
"path": "^0.12.7",
"secp256k1": "^3.5.0",
"sha.js": "^2.4.11",
"varstruct": "^6.1.2"
},
"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-es2017": "^6.24.1",
"babel-watch": "^2.0.7",
"eslint": "^4.14.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"
}
}