forked from preactjs/preact-compat
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.96 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
80
81
82
83
84
85
86
87
88
89
90
{
"name": "preact-compat",
"amdName": "preactCompat",
"version": "1.6.1",
"description": "A React compatibility layer for Preact",
"main": "dist/preact-compat.js",
"minified:main": "dist/preact-compat.min.js",
"jsnext:main": "src/index.js",
"scripts": {
"build": "npm-run-all transpile minify size",
"transpile": "rollup -c rollup.config.js",
"minify": "uglifyjs $npm_package_main -cm -o $npm_package_minified_main -p relative --in-source-map ${npm_package_main}.map --source-map ${npm_package_minified_main}.map",
"size": "echo \"gzip size: $(gzip-size $npm_package_minified_main | pretty-bytes)\"",
"test": "npm-run-all lint build test:karma",
"lint": "eslint {src,test}",
"test:karma": "karma start --single-run",
"prepublish": "npm-run-all build test",
"release": "npm run -s build && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"keywords": [
"preact",
"react",
"compatibility"
],
"repository": {
"type": "git",
"url": "https://github.com/developit/preact-compat.git"
},
"author": "Jason Miller <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/developit/preact-compat/issues"
},
"homepage": "https://github.com/developit/preact-compat",
"devDependencies": {
"babel-core": "^6.6.4",
"babel-eslint": "^6.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-es2015-classes": "^6.6.4",
"babel-plugin-transform-object-rest-spread": "^6.6.4",
"babel-plugin-transform-react-jsx": "^6.6.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-es2015-loose-rollup": "^7.0.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"es5-shim": "^4.5.7",
"eslint": "~2.2.0",
"gzip-size-cli": "^1.0.0",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-chai-sinon": "^0.1.5",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "^2.0.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mkdirp": "^0.5.1",
"mocha": "^2.4.5",
"npm-run-all": "^1.5.2",
"phantomjs-prebuilt": "^2.1.7",
"preact": "^4.1.2",
"preact-jsx-chai": "^1.1.1",
"preact-render-to-string": "^2.0.1",
"pretty-bytes-cli": "^1.0.0",
"rollup": "^0.25.7",
"rollup-plugin-babel": "^2.4.0",
"rollup-plugin-commonjs": "^2.2.1",
"rollup-plugin-node-resolve": "^1.5.0",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"uglify-js": "^2.6.2",
"webpack": "^1.12.14"
},
"peerDependencies": {
"preact": "^4.1.2",
"proptypes": "^0.14.3"
},
"optionalDependencies": {
"preact": "^4.1.2",
"proptypes": "^0.14.3"
},
"dependencies": {
"preact-render-to-string": "^2.0.1",
"preact-svg": "^1.4.3",
"proptypes": "^0.14.3"
}
}