-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
66 lines (66 loc) · 1.72 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
{
"name": "react-polymer",
"version": "4.1.0",
"description": "Use Polymer elements in React",
"main": "index.js",
"scripts": {
"pretest": "standard && node test/build test/source.html | node test/transform-build > test/build.html",
"test": "zuul -- test/test.js",
"pretest-local": "npm run pretest",
"test-local": "zuul --no-coverage --local 8088 -- test/test.js",
"build-demo": "browserify demo/index-source.js -o demo/index-browserify.js -t [ babelify --presets [ es2015 react ] ] && node test/build demo/index-source.html > demo/index.html"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jscissr/react-polymer.git"
},
"files": [
"input.js",
"ShadyDOMChildrenOperations.js",
"ShadyDOMLazyTree.js"
],
"keywords": [
"react",
"polymer",
"material",
"paper"
],
"author": "Jan Schär <[email protected]>",
"license": "MIT",
"bugs": "https://github.com/jscissr/react-polymer/issues",
"homepage": "https://github.com/jscissr/react-polymer#readme",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-preset-react": "^6.11.1",
"browserify": "^14.1.0",
"merge-stream": "^1.0.1",
"polymer-build": "^1.5.1",
"react": "^15.4.0",
"react-addons-test-utils": "^15.4.0",
"react-dom": "^15.4.0",
"standard": "^10.0.2",
"tape": "^4.4.0",
"zuul": "^3.9.0"
},
"peerDependencies": {
"react": "^15.4.0"
},
"dependencies": {
"babel-preset-es2015": "^6.3.13",
"babelify": "^7.2.0",
"object-assign": "^4.1.0",
"prop-types": "^15.5.10"
}
}