-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·54 lines (54 loc) · 1.61 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
{
"name": "grimoirejs-animation",
"version": "0.0.0-development",
"description": "The animation plugin of grimoire.js.",
"main": "./ref/index.js",
"typings": "./ref/index.d.ts",
"files": [
"register",
"ref",
"src"
],
"keywords": [
"grimoire",
"grimoirejs"
],
"scripts": {
"prepublish": "webpack --env.prod",
"start": "webpack --watch --progress",
"bundle": "webpack --progress --watch",
"build": "webpack --env.browser",
"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"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"condition-circle": "^1.5.0",
"grimoirejs": "^0.20.1",
"grimoirejs-cauldron": "^3.1.6",
"grimoirejs-fundamental": "^0.29.2",
"grimoirejs-math": "^1.14.7",
"raw-loader": "^0.5.1",
"regenerator-runtime": "^0.11.0",
"semantic-release": "^7.0.2",
"ts-loader": "^2.3.3",
"typescript": "^2.4.2",
"webpack": "^3.5.5",
"webpack-shell-plugin": "^0.5.0",
"yargs": "^8.0.2"
},
"author": "GrimoireGL",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/GrimoireGL/grimoirejs-animation.git"
},
"release": {
"verifyConditions": "condition-circle"
}
}