-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.63 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
{
"name": "hyperapp-logger",
"version": "0.6.0",
"description": "Log Hyperapp state updates and action information to the console",
"main": "dist/hyperappLogger.js",
"type": "module",
"module": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/okwolf/hyperapp-logger.git"
},
"files": [
"src/**",
"dist/**"
],
"scripts": {
"clean": "npx --ignore-existing --quiet rimraf coverage dist node_modules",
"format": "prettier --write \"{src,test}/**/*.js\"",
"format:check": "prettier --list-different \"{src,test}/**/*.js\"",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage --no-cache",
"bundle": "rollup -i src/index.js -o dist/hyperappLogger.js -m -f umd -n hyperappLogger",
"minify": "uglifyjs dist/hyperappLogger.js -o dist/hyperappLogger.js -mc pure_funcs=['Object.defineProperty'] --source-map includeSources,url=hyperappLogger.js.map",
"check": "npm run format:check && npm t",
"build": "npm run check && npm run bundle && npm run minify",
"release:dry": "npm run clean && npm i && npm run check && npm run build",
"release": "node --experimental-json-modules release"
},
"jest": {
"transform": {}
},
"peerDependencies": {
"hyperapp": "^2.0.0"
},
"devDependencies": {
"hyperapp": "=2.0.20",
"jest": "=27.4.7",
"prettier": "=2.5.1",
"rollup": "=2.67.0",
"uglify-js": "=3.15.0"
},
"author": "Wolfgang Wedemeyer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/okwolf/hyperapp-logger/issues"
},
"homepage": "https://github.com/okwolf/hyperapp-logger"
}