-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
87 lines (87 loc) · 2.44 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "react-mt-svg-lines",
"description": "A React component to animate the line stroke in SVGs",
"keywords": [
"react-component",
"react",
"svg",
"animate",
"line",
"path",
"stroke"
],
"author": "Peter Morawiec",
"version": "0.9.1",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/moarwick/react-mt-svg-lines"
},
"bugs": "https://github.com/moarwick/react-mt-svg-lines/issues",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --content-base src/demos/",
"build": "rimraf public && webpack --mode production --progress --profile --colors",
"deploy": "gh-pages -d public",
"lint": "eslint src",
"dist": "babel src --out-dir lib --ignore demos",
"predeploy": "npm run build",
"prepublishOnly": "npm run dist",
"test": "jest --watch --no-cache"
},
"browserify": {
"transform": [
"reactify"
]
},
"peerDependencies": {
"react": ">= 15.0",
"react-dom": ">= 15.0",
"prop-types": "> =15.6.2"
},
"dependencies": {
"@tweenjs/tween.js": "16.7.0"
},
"devDependencies": {
"autoprefixer": "^9.1.2",
"babel-cli": "^6.24.0",
"babel-core": "^6.10.4",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"enzyme": "^3.4.4",
"enzyme-adapter-react-16": "^1.2.0",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.11.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^2.0.0",
"gh-pages": "^1.2.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.5.0",
"node-sass": "^4.9.3",
"postcss-loader": "^3.0.0",
"prettier": "^1.14.2",
"progress-bar-webpack-plugin": "^1.11.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"rimraf": "^2.5.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.22.1",
"url-loader": "^1.1.1",
"webpack": "^4.17.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
}
}