-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.34 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
{
"name": "@snakesilk/xml-loader",
"version": "1.0.0",
"description": "Loader for SnakeSilk engine using XML as storage format.",
"main": "./dist/index.js",
"scripts": {
"build": "./scripts/build-dist.sh",
"test": "mocha './src/**/*-test.js'",
"test+coverage": "istanbul cover $(npm bin)/_mocha './src/**/*-test.js'",
"package": "npm run build && npm pack",
"publish+npm": "npm run build && npm publish",
"upload-coverage": "codecov -f coverage/lcov.info --disable=gcov",
"watch": "babel ./src --out-dir ./dist --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/snakesilk/snakesilk-xml-loader.git"
},
"author": "Pontus Persson <pontus.alexander@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/snakesilk/snakesilk-xml-loader/issues"
},
"homepage": "https://github.com/snakesilk/snakesilk-xml-loader#readme",
"peerDependencies": {
"@snakesilk/engine": "^1.0.0",
"@snakesilk/platform-traits": ">=0.6.0"
},
"devDependencies": {
"@snakesilk/engine": "^1.0.0",
"@snakesilk/platform-traits": ">=0.6.0",
"@snakesilk/testing": "^0.2.1",
"babel-cli": "6",
"babel-preset-es2015": "6",
"codecov": "^1.0.1",
"expect.js": "^0.3.1",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"sinon": "^1.17.5",
"three": "0.70"
}
}