-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
34 lines (34 loc) · 910 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
{
"name": "sttapi",
"version": "0.0.1",
"description": "TypeScript Client API for Star Trek Timelines",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"postbuild": "node_modules/.bin/copyfiles -f lib/*.d.ts dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IAmPicard/STTApi.git"
},
"keywords": [],
"author": "IAmPicard",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/IAmPicard/STTApi/issues"
},
"homepage": "https://github.com/IAmPicard/STTApi#readme",
"devDependencies": {
"@types/node": "latest",
"copyfiles": "latest",
"typescript": "latest"
},
"dependencies": {
"dexie": "latest",
"ab-parser": "file:./AssetParser",
"url-search-params-polyfill": "latest"
}
}