-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.67 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
{
"name": "inline-svg-react",
"version": "0.2.0",
"description": "Inline your raw svg files with react with a little bit of accessibility",
"main": "lib/index.js",
"jsnext:main": "lib/index.js",
"repository": {
"type": "git",
"url": "git@github.com:madiodio/inline-svg-react.git"
},
"keywords": [
"svg",
"react",
"inline",
"accessibility",
"a11y"
],
"bugs": {
"url": "https://github.com/madiodio/inline-svg-react/issues"
},
"homepage": "https://github.com/madiodio/inline-svg-react",
"author": "Madiodio Gaye <papigaye1@gmail.com>",
"license": "MIT",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"clean": "rimraf ./lib",
"prebuild": "npm run clean",
"build": "babel src -d lib"
},
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0 || ^16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^23.6.0",
"enzyme": "^3.0.0",
"enzyme-to-json": "^3.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"jest": "^21.2.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"rimraf": "^2.6.1"
},
"dependencies": {
"prop-types": "^15.5.0"
},
"engines": {
"node": ">=4"
}
}