-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.28 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
{
"name": "ambolt",
"version": "1.0.0",
"description": "",
"main": "index.js",
"bin": {
"ambolt": "./dist/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist/ && ./node_modules/.bin/babel ./ --out-dir dist/ --ignore ./node_modules",
"start:debug": "npm run build && nodemon dist/index.js",
"send": "npm run build && node dist/index.js",
"publish:local": "sudo npm rm -g ambolt && npm run build && sudo npm i -g ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xfolio/ambolt.git"
},
"author": "jshekhawat",
"license": "ISC",
"bugs": {
"url": "https://github.com/0xfolio/ambolt/issues"
},
"homepage": "https://github.com/0xfolio/ambolt#readme",
"dependencies": {
"@babel/runtime": "^7.4.5",
"commander": "^2.20.0",
"fs-extra": "^8.0.1",
"mem-fs": "^1.1.3",
"mem-fs-editor": "^6.0.0",
"nodemon": "^1.19.1",
"ramda": "^0.26.1",
"rimraf": "^2.6.3",
"shelljs": "^0.8.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"esm": "^3.2.25"
}
}