forked from SupratikRulz/AnimizeJS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.62 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.62 KB
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
{
"name": "animizejs",
"version": "1.0.0",
"description": "javascript library for doing awesome animations",
"main": "./dist/animize.bundle.js",
"scripts": {
"lint": "bash script/lint/lint $file",
"start": "webpack-dev-server --inline --hot --open",
"build": "webpack -p",
"test": "echo \"Error: no test specified\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/SupratikRulz/AnimizeJS.git"
},
"keywords": [
"javascript",
"animate",
"animation",
"animize",
"animizejs"
],
"author": "animizeJS",
"license": "MIT",
"bugs": {
"url": "https://github.com/SupratikRulz/AnimizeJS/issues"
},
"homepage": "https://github.com/SupratikRulz/AnimizeJS#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.7",
"eslint": "^4.14.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"node-sass": "^4.7.2",
"pre-commit": "^1.2.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"webpack": "^2.7.0",
"webpack-dev-server": "^2.2.0-rc.0"
},
"pre-commit": {
"run": [
"lint",
"build",
"test"
]
}
}