-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathpackage.json
60 lines (60 loc) · 1.84 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": "rekapi",
"version": "2.3.0",
"homepage": "http://rekapi.com",
"author": "Jeremy Kahn <[email protected]>",
"description": "A keyframe animation library for JavaScript",
"main": "dist/rekapi.js",
"contributors": [
{
"name": "Franck Lecollinet"
},
{
"name": "Brian Downing"
}
],
"devDependencies": {
"@jeremyckahn/minami": "^1.3.1",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"concurrently": "^3.5.0",
"gh-pages": "^1.0.0",
"jquery": "^3.2.1",
"jsdoc": "^3.5.5",
"jsdom": "11.0.0",
"jsdom-global": "^3.0.2",
"jshint": "^2.9.4",
"live-server": "^1.2.0",
"lodash": "~2.4.1",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"request": "^2.83.0",
"webpack": "2.5.1",
"webpack-dev-server": "2.4.5"
},
"scripts": {
"build": "webpack",
"ci": "npm test && npm run lint",
"start": "webpack-dev-server --config webpack.test.config.js",
"test": "mocha -r jsdom-global/register ./node_modules/babel-core/register.js test/index.js",
"test:watch": "nodemon --exec \"npm test\" --watch src --watch renderers --watch test",
"doc": "jsdoc -c .jsdoc src/*.js src/renderers/*.js",
"doc:view": "live-server dist/doc --port=9124",
"doc:watch": "nodemon --exec \"npm run doc\" --watch src --watch ./ --ext js,md --ignore dist",
"doc:live": "concurrently --kill-others \"npm run doc:watch\" \"npm run doc:view\"",
"lint": "jshint src",
"deploy": "npm run build && npm run doc && gh-pages -d dist -b gh-pages",
"preversion": "npm run lint && npm test",
"postversion": "git push && git push --tags && npm run deploy && npm publish"
},
"files": [
"src",
"dist"
],
"license": "MIT",
"dependencies": {
"lodash.sortedindexby": "^4.6.0",
"shifty": "^2.20.0"
}
}