-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
88 lines (88 loc) · 2.67 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
87
88
{
"name": "grimoirejs",
"version": "0.0.0-development",
"description": "A service-oriented WebGL framework.",
"main": "./ref/index.js",
"typings": "./ref/index.d.ts",
"files": [
"ref",
"register",
"lib"
],
"keywords": [
"grimoire"
],
"dependencies": {
"eventemitter3": "^2.0.3"
},
"devDependencies": {
"ava": "^0.22.0",
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.26.0",
"condition-circle": "^1.5.0",
"cpx": "^1.5.0",
"grimoirejs-cauldron": "^3.1.8",
"jsdom": "^11.3.0",
"lodash": "^4.17.2",
"nyc": "^11.3.0",
"proxyquire": "^1.7.11",
"regenerator-runtime": "^0.11.0",
"remap-istanbul": "^0.9.5",
"semantic-release": "^7.0.2",
"sinon": "^3.3.0",
"trash-cli": "^1.4.0",
"ts-loader": "^2.3.7",
"tslint": "^5.8.0",
"typedoc": "^0.8.0",
"typedoc-md-theme": "^1.0.1",
"typescript": "^2.6.1",
"typescript-awaiter": "^1.0.0",
"webpack": "^3.8.1",
"webpack-shell-plugin": "^0.5.0",
"xhr-mock": "^1.9.1",
"xmldom": "^0.1.27",
"yargs": "^8.0.2"
},
"repository": "http://github.com/GrimoireGL/GrimoireJS",
"scripts": {
"coverage": "trash coverage && nyc --reporter=lcov --reporter=text --reporter=json --reporter=html npm run test",
"test": "trash test-lib && tsc -p tsconfig.test.json && cpx test/_TestResource/**/* test-lib/_TestResource && ava ./test-lib/**/*Test.js --verbose --serial",
"lint": "tslint -c tslint.json ./src/**/*.ts",
"prepublish": "webpack --progress --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 --core",
"generate-reference": "cauldron generate-reference --src ./src --dest ./src/index.ts --ts --main ./src/main.ts --dts ./ref --core",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"doc": "node ./doc-timestamp.js && typedoc --out ./docs/ --options typedoc.json ./tsconfig.json",
"clear-test": "rm -rf coverage .nyc_output test-lib",
"clear": "rm -rf ref register && npm run clear-test"
},
"license": "MIT",
"release": {
"verifyConditions": "condition-circle"
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
},
"ava": {
"failWithoutAssertions": false,
"require": [
"babel-register"
],
"babel": "inherit"
},
"nyc": {
"include": [
"**/src/**/*"
]
}
}