forked from weizhenye/ass-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·61 lines (61 loc) · 1.77 KB
/
package.json
File metadata and controls
executable file
·61 lines (61 loc) · 1.77 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "ass-compiler",
"version": "0.1.9",
"description": "Parses and compiles ASS subtitle format to easy-to-use data structure.",
"main": "dist/ass-compiler.js",
"module": "src/index.js",
"sideEffects": false,
"files": [
"dist",
"src",
"types"
],
"types": "types/index.d.ts",
"scripts": {
"lint": "eslint src test",
"preunit": "rollup -c rollup.config.test.js",
"unit": "mocha temp/test.js",
"cover": "cross-env ISTANBUL_REPORT_DIR=coverage ISTANBUL_REPORTERS=text-summary,lcov npm run unit -- --reporter=mocha-istanbul",
"test": "npm run lint && npm run unit && npm run cover",
"dev": "rollup -c -w",
"bundle": "rollup -c",
"minify": "uglifyjs dist/ass-compiler.js -m -o dist/ass-compiler.min.js",
"build": "npm run bundle && npm run minify",
"preversion": "npm test",
"version": "npm run build && git add -A ./dist",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weizhenye/ass-compiler.git"
},
"keywords": [
"ass",
"ssa",
"subtitle",
"compiler",
"parser"
],
"author": "Zhenye Wei",
"license": "MIT",
"bugs": {
"url": "https://github.com/weizhenye/ass-compiler/issues"
},
"homepage": "https://ass.js.org/ass-compiler/",
"devDependencies": {
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"istanbul": "^0.4.5",
"mocha": "^7.1.1",
"mocha-istanbul": "^0.3.0",
"rollup": "^2.6.1",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-istanbul": "^2.0.1",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-replace": "^2.2.0",
"uglify-js": "^3.9.1"
}
}