forked from GrimoireGL/grimoirejs-math
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.99 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": "grimoirejs-math",
"version": "1.14.0-beta1",
"description": "The basement library for math of grimoire.js",
"main": "./ref/index.js",
"typings": "./ref/index.d.ts",
"files": [
"ref",
"register",
"src"
],
"keywords": [
"grimoirejs",
"grimoire"
],
"dependencies": {
"gl-matrix": "https://github.com/GrimoireGL/gl-matrix.git"
},
"devDependencies": {
"ava": "^0.22.0",
"babel-cli": "^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",
"grimoirejs": "^0.19.5",
"grimoirejs-cauldron": "^3.1.6",
"semantic-release": "^7.0.2",
"ts-loader": "^2.3.3",
"typedoc": "^0.8.0",
"typescript": "^2.4.2",
"webpack": "^3.5.5",
"webpack-shell-plugin": "^0.5.0"
},
"peerDependencies": {
"grimoirejs": "^0.16.0"
},
"repository": {
"type": "git",
"url": "https://github.com/GrimoireGL/grimoirejs-math.git"
},
"scripts": {
"test": "tsc --outDir ./lib && babel ./lib --presets es2015 --plugins transform-runtime --out-dir ./lib-es5 && babel ./test --presets es2015 --plugins transform-runtime --out-dir ./test-es5 && ava ./test-es5/**/*Test.js --verbose ",
"prepublish": "npm run build -- --env.prod&& npm test",
"start": "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"
},
"license": "MIT",
"release": {
"verifyConditions": "condition-circle"
},
"api-reference":"https://api.grimoire.gl/grimoirejs-math"
}