-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
47 lines (47 loc) · 1.36 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
{
"name": "react-primitives-svg",
"version": "0.0.2",
"description": "Primitive React SVG Elements Across Targets",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "rm -rf lib && babel -d lib src",
"build:example": "browserify ./example.js -o example.build.js -t [ babelify ]",
"build:watch": "npm run build -- --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chengyin/react-primitives-svg.git"
},
"keywords": [
"react",
"svg"
],
"author": "Chengyin Liu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chengyin/react-primitives-svg/issues"
},
"homepage": "https://github.com/chengyin/react-primitives-svg#readme",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-preset-airbnb": "^2.1.1",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-prefer-object-spread": "^1.1.0",
"eslint-plugin-react": "^6.4.1"
},
"peerDependencies": {
"react": "*",
"react-dom": "*",
"react-native": "*",
"react-native-svg": "*",
"react-sketchapp": ">= 1.0"
}
}