-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 2.33 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@sandiz/psarcjs",
"version": "1.3.2",
"description": "node.js module to read and extract Rocksmith PSARC files",
"main": "dist/index.js",
"scripts": {
"test": "python3 test/sng/generate-sng-json.py && mocha --bail -r ts-node/register --reporter spec test/*.ts",
"posttest": "rm -rf test/xml/*.sng && rm -rf test/sng/*.sng.json",
"drypack": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"cover": "python3 test/sng/generate-sng-json.py && c8 --reporter=lcov mocha -r ts-node/register --reporter spec test/*.ts",
"postcover": "rm -rf test/xml/*.sng && rm -rf test/sng/*.sng.json",
"build": "rm -rf dist/ && tsc --build --pretty"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sandiz/psarcjs.git"
},
"files": [
"dist/**",
"src/**"
],
"keywords": [
"psarc",
"psarcjs",
"rocksmith",
"rocksmith2014"
],
"author": "Sandi Chakravarty <sandi.newton@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sandiz/psarcjs/issues"
},
"homepage": "https://github.com/sandiz/psarcjs#readme",
"dependencies": {
"aes-js": "^3.1.2",
"binary-parser": "git+https://github.com/psarcjs-forks/binary-parser.git",
"fs-extra": "^8.1.0",
"globby": "^10.0.1",
"imagemagick-native": "git+https://github.com/psarcjs-forks/node-imagemagick-native.git",
"js-crc32": "^1.0.1",
"ogg": "git+https://github.com/psarcjs-forks/node-ogg.git",
"waapi": "^2017.2.0",
"waapi-client": "^2017.2.1",
"xml2js": "git+https://github.com/psarcjs-forks/node-xml2js.git"
},
"devDependencies": {
"@types/aes-js": "^3.1.0",
"@types/binary-parser": "^1.3.1",
"@types/chai": "^4.2.7",
"@types/chai-arrays": "^1.0.3",
"@types/chai-fs": "^2.0.2",
"@types/fs-extra": "^8.0.1",
"@types/imagemagick-native": "^1.7.29",
"@types/mocha": "^5.2.7",
"@types/mocha-each": "^1.1.0",
"@types/node": "^12.12.17",
"@types/xml2js": "^0.4.5",
"await-spawn": "^3.0.0",
"c8": "^5.0.4",
"chai": "^4.2.0",
"chai-arrays": "^2.0.0",
"chai-exclude": "^2.0.2",
"chai-fs": "^2.0.0",
"coveralls": "^3.0.9",
"mocha": "^6.2.2",
"mocha-each": "^2.0.1",
"tmp": "^0.1.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.3"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}