-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.47 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
50
51
52
53
54
55
{
"name": "flyps-dom-snabbdom",
"version": "0.3.1",
"description": "A package that brings Snabbdom to Flyps.",
"browser": "dist/flyps-dom-snabbdom.umd.js",
"main": "dist/flyps-dom-snabbdom.cjs.js",
"module": "dist/flyps-dom-snabbdom.esm.js",
"scripts": {
"build": "rollup -c",
"format": "prettier --write 'src/**/*.js'",
"lint": "eslint src",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm test && npm run lint",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Contargo/flyps-dom-snabbdom.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Contargo/flyps-dom-snabbdom/issues"
},
"homepage": "https://github.com/Contargo/flyps-dom-snabbdom#README",
"dependencies": {
"flyps": "0.6.7",
"snabbdom": "3.5.1"
},
"devDependencies": {
"@babel/core": "7.18.13",
"@babel/preset-env": "7.18.10",
"@rollup/plugin-babel": "5.3.1",
"babel-loader": "8.2.5",
"eslint": "8.23.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "27.0.1",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.0.1",
"jest-environment-jsdom": "^29.0.1",
"prettier": "2.7.1",
"rollup": "2.78.1"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/*.test.js"
],
"coverageDirectory": "<rootDir>/coverage",
"roots": [
"<rootDir>/src"
],
"testEnvironment": "jsdom"
}
}