forked from zaceno/hyperapp-transitions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 988 Bytes
/
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
{
"name": "@hyperapp/transitions",
"version": "1.0.2",
"description": "Transitions for Hyperapp",
"main": "dist/transitions.js",
"module": "src/index.js",
"scripts": {
"umd": "rollup src/index.js -f umd -n transitions -m -o dist/transitions.js",
"minify": "uglifyjs dist/transitions.js -o dist/transitions.js -mc --source-map includeSources,url=transitions.js.map",
"build": "npm run umd && npm run minify",
"test": "npm run build && ava test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HyperappCommunity/transitions.git"
},
"author": "Zacharias Enochsson",
"license": "MIT",
"bugs": {
"url": "https://github.com/HyperappCommunity/transitions/issues"
},
"homepage": "https://github.com/HyperappCommunity/transitions#readme",
"devDependencies": {
"ava": "^1.0.0-beta.3",
"hyperapp": "^1.1.2",
"jsdom": "^11.6.2",
"rollup": "^0.52.2",
"uglify-js": "^3.2.2"
},
"dependencies": {}
}