-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.26 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
{
"name": "hyperapp-connect",
"description": "Connected components for Hyperapp.",
"version": "1.1.0",
"main": "dist/hyperapp-connect.js",
"module": "src/index.js",
"license": "MIT",
"repository": "etalisoft/hyperapp-connect",
"files": ["src", "dist"],
"author": "Jason Whitted <[email protected]>",
"keywords": ["hyperapp", "connect"],
"scripts": {
"test": "jest --coverage --no-cache",
"build": "npm run bundle && npm run minify",
"bundle": "rollup -i src/index.js -o dist/hyperapp-connect.js -m -f umd -n hyperappConnect",
"minify":
"uglifyjs dist/hyperapp-connect.js -o dist/hyperapp-connect.js -mc pure_funcs=Object.defineProperty --source-map includeSources,url=hyperapp-connect.js.map",
"prepare": "npm run build",
"format": "prettier --semi false --write {src,test}/**/*.js {,test/ts/}*.{ts,tsx}",
"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": "env"
},
"devDependencies": {
"babel-preset-env": "^1.6.1",
"jest": "^22.2.0",
"prettier": "^1.10.2",
"rollup": "^0.55.3",
"typescript": "2.7.1",
"uglify-js": "3.3.9"
}
}