-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.85 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
{
"name": "@zauberware/react-svg-assets",
"version": "0.10.2",
"description": "A simple SVG asset provider for React (^16.3.0) .. or better (^16.6.0).",
"main": "dist/index.js",
"peerDependencies": {
"react": ">=16.3.0",
"react-dom": ">=16.7.0",
"styled-components": ">=4.0.0"
},
"scripts": {
"start": "webpack --watch",
"build": "webpack",
"prepublishOnly": "npm run build",
"test:unit": "mocha --require @babel/register --require ./test/helpers.js --require ./test/dom.js 'test/**/*.spec.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zauberware/react-svg-assets.git"
},
"keywords": [
"react",
"svg",
"assets",
"Provider",
"Context API"
],
"author": "Philipp Siegmund <[email protected]> (http://zauberware.com/)",
"contributors": [
"Simon Franzen <[email protected]> (http://zauberware.com/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/zauberware/react-svg-assets/issues"
},
"homepage": "https://github.com/zauberware/react-svg-assets#readme",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"babel-loader": "8.0.4",
"chai": "^4.2.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"file-loader": "^3.0.1",
"jsdom": "^13.1.0",
"mocha": "^5.2.0",
"react": "^16.3.0",
"react-dom": "^16.7.0",
"prop-types": "^15.6.2",
"svg-inline-loader": "^0.8.0",
"url-loader": "^1.1.2",
"webpack": "4.19.1",
"styled-components": "^4.0.1",
"webpack-cli": "^3.1.2"
}
}