-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
42 lines (42 loc) · 1.2 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
{
"name": "preact-photon",
"version": "1.3.0",
"description": "Preact + Photon = <3",
"main": "preact-photon.js",
"scripts": {
"build": "babel -f $npm_package_main -s -o $npm_package_main < src/index.js",
"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",
"photon",
"electron"
],
"repository": {
"type": "git",
"url": "https://github.com/developit/preact-photon.git"
},
"author": "Jason Miller <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/developit/preact-photon/issues"
},
"homepage": "https://github.com/developit/preact-photon",
"implicitDependencies": {
"photon": "git+https://github.com/connors/photon.git#v0.1-alpha"
},
"peerDependencies": {
"preact": "*"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^7.0.0",
"chai": "^3.5.0",
"eslint": "^3.1.0",
"mocha": "^3.0.0",
"preact": "^7.2.0",
"preact-render-to-string": "^3.0.0"
}
}