-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
49 lines (49 loc) · 1.4 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": "hyperapp-fx",
"version": "2.0.0-beta.3",
"description": "Effects for use with Hyperapp",
"type": "module",
"module": "src/index.js",
"peerDependencies": {
"hyperapp": "^2.0.0"
},
"devDependencies": {
"eslint": "=8.57.0",
"eslint-plugin-compat": "=5.0.0",
"jest": "=29.7.0",
"jest-environment-jsdom": "=29.7.0",
"jsdoc-to-markdown": "=8.0.1",
"prettier": "=3.3.2",
"rollup": "=4.18.0",
"uglify-js": "=3.18.0"
},
"scripts": {
"clean": "npx --yes --quiet rimraf coverage node_modules",
"format": "prettier --write \"**/*.js\"",
"format:check": "prettier --list-different \"**/*.js\"",
"lint": "eslint .",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage --no-cache",
"doc": "jsdoc2md src/fx/*.js src/subs/*.js > api.md",
"check": "npm run format:check && npm run lint && npm t",
"release:dry": "npm run clean && npm i && npm run check && npm run doc",
"release": "node release"
},
"prettier": {
"trailingComma": "none",
"arrowParens": "avoid"
},
"browserslist": [
"> 1%"
],
"jest": {
"testEnvironment": "jsdom",
"transform": {}
},
"author": "Wolfgang Wedemeyer <wolf@okwolf.com>",
"license": "MIT",
"repository": "okwolf/hyperapp-fx",
"homepage": "https://github.com/okwolf/hyperapp-fx",
"bugs": {
"url": "https://github.com/okwolf/hyperapp-fx/issues"
}
}