forked from preactjs/preact-render-to-string
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.88 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
{
"name": "preact-render-to-json",
"amdName": "preactRenderToJSON",
"version": "3.6.6",
"description": "Render JSX and Preact components to JSON",
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"build": "npm run -s transpile",
"transpile": "rollup -c rollup.config.js -m ${npm_package_main}.map -f umd -n $npm_package_amdName $npm_package_jsnext_main -o $npm_package_main",
"test": "eslint src test && mocha --compilers js:babel-register test/**/*.js",
"prepublish": "npm run build",
"release": "npm run build && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"keywords": [
"preact",
"render",
"universal",
"isomorphic"
],
"author": "Nathan Cahill <nathan@nathancahill.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nathancahill/preact-render-to-json.git"
},
"bugs": {
"url": "https://github.com/nathancahill/preact-render-to-json/issues"
},
"homepage": "https://github.com/nathancahill/preact-render-to-json",
"peerDependencies": {
"preact": "*"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-minimal": "^2.0.0",
"babel-preset-es2015-minimal-rollup": "^2.1.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"eslint": "^3.2.2",
"mocha": "^3.0.0",
"preact": "^8.1.0",
"rollup": "^0.34.3",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-commonjs": "^3.3.1",
"rollup-plugin-memory": "^1.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0"
}
}