forked from preactjs/preact-compat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.06 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": "3.18.0",
"description": "A React compatibility layer for Preact",
"main": "dist/preact-compat.js",
"minified:main": "dist/preact-compat.min.js",
"jsnext:main": "dist/preact-compat.es.js",
"module": "dist/preact-compat.es.js",
"scripts": {
"build": "npm-run-all transpile:* minify size",
"transpile:umd": "rollup -c --environment FORMAT:umd",
"transpile:es": "rollup -c --environment FORMAT:es",
"minify": "cross-var cross-env uglifyjs $npm_package_main -c dead_code,evaluate -m -o $npm_package_minified_main --source-map filename=${npm_package_minified_main}.map,content=${npm_package_main}.map,includeSources",
"size": "printf \"gzip size: \" && cross-var cross-env gzip-size $npm_package_minified_main --raw",
"test": "npm-run-all lint build test:karma",
"lint": "eslint src test",
"test:karma": "karma start --single-run",
"test:watch": "karma start",
"prepublish": "npm-run-all build test",
"release": "cross-var npm run -s build && git commit -am $npm_package_version && git tag $npm_package_version && git push --follow-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.14.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^6.2.5",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"chai": "^4.1.2",
"cross-env": "^5.1.3",
"cross-var": "^1.0.3",
"diff": "^3.0.0",
"es5-shim": "^4.5.9",
"eslint": "^4.17.0",
"gzip-size-cli": "^2.1.0",
"karma": "^2.0.0",
"karma-chai": "^0.1.0",
"karma-chai-sinon": "^0.1.5",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-source-map-support": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.1",
"mkdirp": "^0.5.1",
"mocha": "^5.0.0",
"npm-run-all": "^4.1.2",
"phantomjs-prebuilt": "^2.1.10",
"preact": "^8.1.0",
"preact-jsx-chai": "^2.2.1",
"pretty-bytes-cli": "^2.0.0",
"rollup": "^0.55.5",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-buble": "^0.19.1",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-memory": "^3.0.0",
"rollup-plugin-node-resolve": "^3.0.2",
"sinon": "^4.3.0",
"sinon-chai": "^2.8.0",
"uglify-js": "^3.3.10",
"webpack": "^1.13.2"
},
"peerDependencies": {
"preact": ">=5"
},
"dependencies": {
"immutability-helper": "^2.1.2",
"preact-render-to-string": "^3.6.0",
"preact-transition-group": "^1.1.0",
"prop-types": "^15.5.8",
"standalone-react-addons-pure-render-mixin": "^0.1.1"
}
}