-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.51 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
{
"name": "mjukna",
"version": "1.0.2",
"description": "animate layout changes",
"main": "dist/main.js",
"source": "src/index.js",
"module": "dist/main.m.js",
"kuta": {
"files": [
"tests/features/**.js"
],
"timeout": 10000
},
"scripts": {
"test": "kuta",
"prepare-demos": "npm run build && cp dist/browser.js demos/mjukna.js",
"gh-pages": "npm run prepare-demos && gh-pages -d demos",
"prepublishOnly": "npm run build",
"build:web": "rollup -c rollup.config.js --environment MINIFY -o dist/browser.js -f iife --name mjukna",
"build:node": "rollup -c rollup.config.js -o dist/main.js -f cjs",
"build:module": "rollup -c rollup.config.js -o dist/main.m.js -f es",
"build": "npm run build:web && npm run build:node && npm run build:module && npm run bundle-size",
"bundle-size": "echo \"Bundle size: `gzip -c dist/browser.js | wc -c`\"",
"bump": "bump --prompt --tag --push --lock"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daniel-lundin/mjukna.git"
},
"author": "Daniel Lundin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/daniel-lundin/mjukna/issues"
},
"homepage": "https://github.com/daniel-lundin/mjukna#readme",
"devDependencies": {
"eslint": "^4.19.1",
"gh-pages": "^1.2.0",
"kuta": "^1.7.4",
"puppeteer": "^1.5.0",
"rollup": "^0.60.1",
"rollup-plugin-terser": "^1.0.1",
"version-bump-prompt": "^4.1.0"
},
"dependencies": {},
"files": [
"dist"
]
}