forked from jorgebucaran/hyperapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "hyperapp",
"description": "1kb JavaScript library for building frontend applications.",
"version": "0.9.3",
"main": "dist/hyperapp.js",
"jsnext:main": "src/index.js",
"module": "src/index.js",
"license": "MIT",
"repository": "hyperapp/hyperapp",
"files": [
"src",
"dist"
],
"author": "Jorge Bucaran",
"keywords": [
"hyperx",
"hyperscript",
"jsx",
"react",
"elm",
"virtual-dom"
],
"scripts": {
"test": "jest --coverage --no-cache",
"build": "rollup -cm -n hyperapp -f umd -i src/index.js -o dist/hyperapp.js",
"prepublish": "npm run build",
"format": "prettier --semi false --write 'src/**/*.js'",
"release": "npm run build && npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"babel": {
"presets": "es2015"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"jest": "^20.0.4",
"prettier": "~1.4.1",
"rollup": "^0.41.6",
"rollup-plugin-uglify": "^2.0.1"
}
}