-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 873 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
{
"name": "subtitle-processor",
"version": "1.2.0",
"description": "A set of API for subtitle processing and a data structure to store subtitles",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run lint && npm run build-ts",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"lint": "npx tslint -c tslint.json -p tsconfig.json"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/astralcai/subtitle-processor.git"
},
"author": "Astral Cai",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/astralcai/subtitle-processor/issues"
},
"homepage": "https://github.com/astralcai/subtitle-processor#readme",
"devDependencies": {
"@types/node": "^11.9.0",
"shelljs": "^0.8.3",
"tslint": "^5.12.1",
"typescript": "^3.3.3"
}
}