-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
86 lines (86 loc) · 2.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "grimoirejs-fundamental",
"version": "0.30.0beta5",
"description": "Base components,converters and nodes for Web3D with Grimoire.js",
"main": "./ref/index.js",
"typings": "./ref/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/GrimoireGL/grimoirejs-fundamental.git"
},
"files": [
"src",
"ref",
"register"
],
"keywords": [
"grimoire",
"grimoirejs",
"webgl"
],
"dependencies": {},
"devDependencies": {
"@types/node": "^8.0.53",
"@types/xmldom": "^0.1.29",
"ava": "^0.22.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"condition-circle": "^1.5.0",
"cpx": "^1.5.0",
"deflate-js": "^0.2.3",
"grimoirejs": "^0.18.1",
"grimoirejs-cauldron": "^3.1.8",
"grimoirejs-math": "^1.15.1",
"http-server": "^0.10.0",
"raw-loader": "^0.5.1",
"regenerator-runtime": "^0.11.0",
"semantic-release": "^7.0.2",
"sinon": "^3.2.1",
"trash-cli": "^1.4.0",
"ts-loader": "^2.3.3",
"tslint": "^5.8.0",
"typedoc": "^0.8.0",
"typescript": "^2.6.2",
"watch": "^1.0.2",
"webpack": "^3.9.1",
"xmldom": "^0.1.27",
"yargs": "^8.0.2"
},
"peerDependencies": {
"grimoirejs": "latest",
"grimoirejs-math": "latest"
},
"scripts": {
"prepublish": "npm run build -- --env.prod",
"lint": "tslint --project ./ --type-check --exclude ./src/index.ts",
"lint:fix": "tslint --project ./ --fix --type-check --exclude ./src/index.ts",
"start": "webpack --watch --progress",
"bundle": "webpack --progress --watch",
"build": "webpack --progress",
"generate-expose": "cauldron generate-exposure --src ./src --dest ./src/index.ts --ts --main ./src/main.ts --dts ./ref",
"generate-reference": "cauldron generate-reference --src ./src --dest ./src/index.ts --ts --main ./src/main.ts --dts ./ref",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"doc": "node ./doc-timestamp.js && typedoc --out ./docs/ --options typedoc.json ./tsconfig.json",
"test": "trash test-lib && tsc -p tsconfig.test.json && cpx \"test/_TestResource/**/*.sort\" test-lib/_TestResource && ava ./test-lib/**/*Test.js --verbose --serial"
},
"license": "MIT",
"babel": {
"presets": [
"es2015"
]
},
"release": {
"verifyConditions": "condition-circle"
},
"ava": {
"failWithoutAssertions": false,
"require": [
"babel-register"
],
"babel": "inherit"
}
}