-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.52 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
{
"name": "kittik-animation-basic",
"version": "0.0.0-semantic-release",
"description": "Basic animation which is needed for creating other animation",
"main": "lib/Animation.js",
"author": "ghaiklor",
"bugs": {
"url": "https://github.com/kittikjs/animation-basic/issues"
},
"homepage": "https://github.com/kittikjs/animation-basic#readme",
"repository": {
"type": "git",
"url": "https://github.com/kittikjs/animation-basic.git"
},
"license": "MIT",
"scripts": {
"clean": "rm -rf ./lib",
"compile": "npm run clean; babel src --out-dir lib",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"docs": "npm run compile; jsdoc2md \"lib/**/*.js\" > API.md",
"prepublish": "npm run compile",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "babel-node ./node_modules/.bin/isparta cover _mocha"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "6.10.1",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-es2015-node4": "2.1.0",
"chai": "3.5.0",
"coveralls": "2.11.9",
"cz-conventional-changelog": "1.1.6",
"isparta": "4.0.0",
"jsdoc-to-markdown": "1.3.6",
"kittik-cursor": "5.0.0",
"kittik-shape-rectangle": "3.0.0",
"mocha": "2.5.3",
"semantic-release": "4.3.5",
"sinon": "1.17.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"tag": "latest"
},
"release": {
"branch": "master"
}
}