forked from fragglet/js-doom-textures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 859 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
{
"name": "js-doom-textures",
"version": "1.0.0",
"description": "This is some JavaScript code for rendering Doom textures based on deutex-format texture definition files.",
"main": "texture.js",
"scripts": {
"test": "jest",
"build": "webpack --config ./config/webpack.config.js",
"watch": "webpack --config ./config/webpack.config.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonrimmer/js-doom-textures.git"
},
"keywords": [],
"author": "Jon Rimmer <jon.rimmer@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonrimmer/js-doom-textures/issues"
},
"homepage": "https://github.com/jonrimmer/js-doom-textures#readme",
"devDependencies": {
"babel-jest": "20.0.3",
"babel-preset-es2015": "6.24.1",
"jest": "20.0.4",
"webpack": "3.5.5"
}
}