-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
65 lines (65 loc) · 2.06 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
{
"title": "Group plugin for RaphaelJS",
"name": "raphael-plugin-group",
"version": "0.0.0-development",
"description": "raphael-plugin-group",
"main": "src/index.js",
"scripts": {
"build": "rollup -c",
"build:watch": "npm run build -- --watch",
"unit": "mocha test/**/*.spec.js --compilers js:babel-core/register",
"unit:watch": "npm run unit -- --watch",
"watch": "npm-run-all dist:clean --parallel build:watch examples:watch",
"examples:watch": "nodemon ./examples/server.js -e js,json,html,css --watch examples --watch dist",
"lint": "standard --verbose --fix src/**/*.js",
"stage-after-lint": "git add src",
"test": "npm-run-all lint unit",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"commit": "git-cz",
"commit:again": "git-cz --retry",
"dist:clean": "rimraf dist/**/* || mkdir dist",
"dist:stage": "git add dist --force"
},
"pre-commit": [
"test",
"stage-after-lint",
"dist:clean",
"build",
"dist:stage"
],
"repository": {
"type": "git",
"url": "https://github.com/meszaros-lajos-gyorgy/raphael-plugin-group.git"
},
"author": "Lajos Meszaros <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/meszaros-lajos-gyorgy/raphael-plugin-group/issues"
},
"homepage": "https://github.com/meszaros-lajos-gyorgy/raphael-plugin-group#readme",
"devDependencies": {
"assert": "^1.4.1",
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"cz-conventional-changelog": "^2.0.0",
"express": "^4.15.3",
"mocha": "^3.5.0",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.2",
"pre-commit": "^1.2.2",
"reload": "^2.2.0",
"rimraf": "^2.6.1",
"rollup": "^0.45.2",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-multi-entry": "^2.0.1",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^4.3.1",
"semantic-release": "^6.3.6",
"standard": "^10.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}