-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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": "eetools",
"version": "0.0.3",
"description": "a console for empty epsilon",
"bin": {
"eetools": "./dist/index.js"
},
"scripts": {
"clean": "rimraf ./dist",
"build": "tsc -d",
"start": "node dist/index.js",
"reset": "rimraf node_modules dist && npm install && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CommaSword/eetools.git"
},
"author": "Amir Arad <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/CommaSword/eetools/issues"
},
"dependencies": {
"chalk": "^2.3.0",
"empty-epsilon-js": "1.0.2",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.5",
"luaparse": "^0.2.1",
"tslib": "^1.9.0",
"vorpal": "1.12.0",
"vorpal-setorprint": "1.0.1",
"yargs": "^11.0.0"
},
"homepage": "https://github.com/CommaSword/eetools#readme",
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/inquirer": "0.0.36",
"@types/json-stringify-safe": "^5.0.0",
"@types/lodash": "^4.14.102",
"@types/minimist": "1.2.0",
"@types/yargs": "^10.0.1",
"ts-node": "^4.1.0",
"typescript": "^2.7.1"
}
}