-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 969 Bytes
/
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
{
"name": "@gameye/tsprimer",
"version": "v0.0.0-local",
"description": "",
"sideEffects": false,
"type": "module",
"main": "out/main.js",
"types": "out/main.d.ts",
"files": [
"out/*"
],
"bin": {
"tsprimer": "node/program.js"
},
"scripts": {
"prepare": "npm run build",
"build": "npm run tsc",
"clean": "rm -rf out",
"test": "npm run spec-all",
"lint": "eslint \"src/**/*.ts\"",
"spec-all": "esm-tape-runner \"out/**/*.spec.js\"",
"tsc": "tsc",
"tsc-watch": "npm run tsc -- --watch"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@small-tech/esm-tape-runner": "^1.0.3",
"@types/tape": "^4.13.0",
"@types/tape-promise": "^4.0.1",
"eslint-config-gameye": "^0.1.3",
"tape": "^5.0.1",
"tape-promise": "^4.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"commander": "^8.0.0",
"msecs": "^1.0.0",
"tslib": "^2.0.1",
"type-fest": "^1.2.1"
}
}