-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.16 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
{
"name": "keyframe",
"version": "2.1.0",
"description": "A simple keyframe utility for custom animation",
"homepage": "https://github.com/brunnolou/keyframe#readme",
"main": "lib/index.js",
"scripts": {
"dev": "neutrino start",
"build:demo": "neutrino build",
"build": "babel src | uglifyjs -b -o lib/index.js && uglifyjs lib/index.js -m -c -o lib/index.min.js",
"test": "neutrino test"
},
"keywords": [
"keyframes",
"animation",
"key frames",
"keyframe",
"timeline",
"transition"
],
"author": "Bruno Lourenco",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-env": "^1.6.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^20.0.3",
"neutrino": "^6.*",
"neutrino-preset-jest": "^6.*",
"neutrino-preset-node": "^6.*",
"neutrino-preset-web": "^6.*",
"uglifyjs": "^2.4.11"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brunnolou/keyframe.git"
},
"bugs": {
"url": "https://github.com/brunnolou/keyframe/issues"
}
}