-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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
{
"name": "animol",
"version": "1.0.12",
"description": "Super lightweight animation library",
"main": "dist/animol.min.js",
"scripts": {
"test": "jest",
"lint": "eslint 'src/*.{js,jsx}'",
"build": "webpack",
"start": "webpack-dev-server --mode=\"development\"",
"docs:dev": "vuepress dev src/docs-src",
"docs:build": "vuepress build src/docs-src"
},
"keywords": [
"animation",
"css",
"transforms"
],
"repository": {
"type": "git",
"url": "https://github.com/stufreen/animol"
},
"homepage": "https://stufreen.github.io/animol",
"author": "Stu Freen",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-es5": "^1.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.12.4",
"jest": "^23.6.0",
"vuepress": "^0.14.8",
"vuepress-theme-craftdocs": "^1.3.6",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.11.2"
},
"browserslist": [
"last 1 version",
"> 0.25%",
"IE 10"
]
}