-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.11 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
{
"name": "@gameye/tsprimer",
"description": "",
"main": "./node/main.js",
"module": "./module/main.js",
"types": "./types/main.d.ts",
"scripts": {
"prepare": "npm run compile",
"compile": "tsc && tsc --project tsconfig.module.json",
"clean": "rm -rf node types module",
"lint": "tslint \"src/**/*.ts\"",
"test-debug": "node --nolazy --inspect=9229 --debug-brk ./node_modules/cucumber/bin/cucumber-js ./features/**/*.feature --require-module ts-node/register --require ./src/test/**/*.ts",
"test": "cucumber-js ./features/**/*.feature --require-module ts-node/register --require ./src/test/**/*.ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/blue-tape": "^0.1.33",
"@types/chai": "^4.2.3",
"@types/cucumber": "^4.0.7",
"@types/tape": "^4.2.33",
"blue-tape": "^1.0.0",
"chai": "^4.2.0",
"cucumber": "^5.1.0",
"nyc": "^14.1.1",
"tape": "^4.11.0",
"ts-node": "^8.3.0",
"tslint": "^5.19.0",
"typescript": "^3.5.3"
},
"dependencies": {
"redux": "^4.0.4",
"tslib": "^1.10.0"
},
"engines": {
"node": "^12"
}
}