-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.6 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "beth-parser",
"version": "0.2.2",
"description": "Parser library for Bethesda's Creation Engine data files",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist coverage .nyc_output",
"build": "tsc -p tsconfig.build.json",
"test": "ts-node node_modules/jasmine/bin/jasmine --config=jasmine.json",
"cover": "nyc npm test",
"format": "eslint -c .eslintrc.json --fix --ext .ts src",
"lint": "eslint -c .eslintrc.json --ext .ts src",
"prepare": "npm run clean && npm run build",
"preversion": "npm test && npm run lint",
"postversion": "git push && git push --tags"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/pavelhoral/beth-parser.git"
},
"keywords": [
"bethesda",
"creation",
"engine",
"fallout",
"skyrim"
],
"author": "Pavel Horal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pavelhoral/beth-parser/issues"
},
"homepage": "https://github.com/pavelhoral/beth-parser#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/jasmine": "^3.5.10",
"@types/node": "^12.12.31",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^6.8.0",
"jasmine": "^3.5.0",
"nyc": "^15.0.0",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.16",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"dependencies": {
"chalk": "^3.0.0",
"iconv-lite": "^0.6.3",
"zlib": "^1.0.5"
}
}