generated from Gameye/tsprimer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.12 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": "@gameye/tsprimer",
"version": "v0.0.0-local",
"description": "",
"main": "node/main.js",
"module": "module/main.js",
"types": "types/main.d.ts",
"files": [
"node/*",
"module/*",
"types/*"
],
"bin": {
"tsprimer": "node/program.js"
},
"scripts": {
"prepare": "npm run compile",
"compile": "tsc && tsc --project tsconfig.module.json",
"clean": "rm -rf node types module",
"test": "npm run spec-all",
"lint": "eslint \"src/**/*.ts\"",
"spec": "tape --require \"ts-node/register\"",
"spec-all": "npm run spec \"src/**/*.spec.ts\"",
"coverage": "nyc --reporter text-summary --reporter lcov --reporter json npm test"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/tape": "^4.13.0",
"@types/tape-promise": "^4.0.1",
"eslint-config-gameye": "^0.1.3",
"nyc": "^15.1.0",
"tape": "^5.0.1",
"tape-promise": "^4.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"@linode/api-v4": "^0.53.2",
"commander": "^7.0.0",
"msecs": "^1.0.0",
"tslib": "^2.0.1",
"type-fest": "^1.1.3"
}
}