forked from livoras/nestscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.39 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
{
"name": "nestscript",
"version": "1.0.5",
"description": "A script nested in JavaScript, dynamically run code in environment without `eval` and `new Function`.",
"main": "src/index.js",
"bin": {
"nsc": "./nsc/bin/run"
},
"scripts": {
"start": "npx nodemon --watch example/main.js --exec 'make js'",
"cov": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test",
"test": "mocha --timeout 60000 -r ts-node/register test/**/*.spec.ts",
"watch": "nodemon --watch src --watch test -e ts --exec 'npm test'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/livoras/nestscript.git"
},
"author": "daijiahua",
"license": "MIT",
"bugs": {
"url": "https://github.com/livoras/nestscript/issues"
},
"homepage": "https://github.com/livoras/nestscript#readme",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/estree": "0.0.44",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.13",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"mocha": "7.1.1",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"tslib": "^2.0.0",
"tslint": "^6.1.2",
"tslint-eslint-rules": "^5.4.0",
"tslint-sonarts": "^1.9.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"acorn": "^8.0.1",
"acorn-walk": "^8.0.0",
"typescript": "^3.9.7",
"@oclif/command": "^1.8.0",
"ts-node": "^8.10.2"
}
}