forked from tanem/react-svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.2 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
{
"name": "react-svg",
"version": "2.1.19",
"description": "A react.js svg component for loading svg files into the dom.",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf dist lib",
"lint": "eslint .",
"test": "jest && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js || true",
"start": "babel-node ./bin/start.js",
"build:lib": "babel src -d lib",
"build:umd": "babel-node ./bin/build.js umd",
"build:umd:min": "babel-node ./bin/build.js umd:min",
"build": "npm run clean && npm run build:lib && npm run build:umd && npm run build:umd:min",
"preversion": "npm run lint && npm test",
"version": "npm run build",
"postversion": "git push && git push --tags && npm publish",
"release": "npm version -m 'Release v%s'"
},
"repository": {
"type": "git",
"url": "https://github.com/atomic-app/react-svg"
},
"keywords": [
"react",
"react.js",
"svg"
],
"author": "PrototypeAlex",
"license": "MIT",
"bugs": {
"url": "https://github.com/atomic-app/react-svg/issues"
},
"homepage": "https://github.com/atomic-app/react-svg",
"peerDependencies": {
"react": "^15.4.1",
"react-dom": "^15.4.1"
},
"dependencies": {
"svg-injector": "^1.1.3"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"coveralls": "^2.11.15",
"enzyme": "^2.7.0",
"eslint": "^3.8.0",
"eslint-config-rackt": "^1.1.1",
"eslint-plugin-react": "^6.4.1",
"jest": "^18.1.0",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"rimraf": "^2.5.4",
"sinon": "^1.17.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2"
},
"jest": {
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"<rootDir>/test/fixtures/",
"<rootDir>/node_modules/",
"<rootDir>/.jest-setup.js"
],
"setupFiles": [
"<rootDir>/.jest-setup.js"
],
"testPathDirs": [
"test"
]
}
}