-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.58 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
{
"name": "grimoirejs-cauldron",
"license": "MIT",
"version": "4.1.5-beta",
"description": "The build environment for grimoirejs.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "watch 'npm run build' ./src",
"build": "babel ./src --out-dir ./lib --presets es2015,stage-2 --plugins transform-runtime",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"keywords": [
"grimoire"
],
"repository": {
"type": "git",
"url": "https://github.com/GrimoireGL/grimoirejs-cauldron.git"
},
"files": [
"bin",
"lib",
"src"
],
"author": "GrimoireGL",
"dependencies": {
"babel-runtime": "^6.23.0",
"chalk": "^1.1.3",
"condition-circle": "^1.5.0",
"find-root": "^1.0.0",
"fs-extra": "^1.0.0",
"glob": "^7.1.0",
"handlebars": "^4.0.6",
"js-comments": "^0.5.4",
"progress": "^1.1.8",
"prompt": "^1.0.0",
"simple-git": "^1.73.0",
"uglify-js": "^2.7.3",
"watch": "^1.0.1",
"yargs": "^6.3.0"
},
"bin": {
"cauldron": "./bin/cauldron"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.13.0",
"babel-watch": "^2.0.3",
"semantic-release": "^6.3.6"
},
"bugs": {
"url": "https://github.com/GrimoireGL/grimoirejs-cauldron/issues"
},
"homepage": "https://github.com/GrimoireGL/grimoirejs-cauldron#readme",
"release": {
"verifyConditions": "condition-circle"
}
}