-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.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
{
"name": "@rojo2/wad-parser",
"version": "1.0.1",
"description": "WAD parser and extractor",
"main": "dist/index.js",
"bin": {
"wad-parser": "dist/index.js"
},
"files": [
"dist/index.js"
],
"scripts": {
"build": "NODE_ENV=production rollup -c rollup.config.js",
"lint": "eslint src/**/*.js",
"docs": "jsdoc -c .jsdoc.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"WAD",
"wad",
"doom",
"parser",
"extract",
"sprites",
"textures",
"sounds",
"tga",
"wav"
],
"author": "ROJO 2 (http://rojo2.com)",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-groundskeeper-willie": "^1.3.2",
"babel-plugin-module-resolver": "^3.1.1",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^5.1.0",
"jsdoc": "^3.5.5",
"minami": "^1.2.3",
"rollup": "^0.63.4",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-json": "^3.0.0"
},
"directories": {
"doc": "docs"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/rojo2/wad-parser.git"
},
"bugs": {
"url": "https://github.com/rojo2/wad-parser/issues"
},
"homepage": "https://github.com/rojo2/wad-parser#readme"
}