-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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
{
"name": "declarativas",
"version": "0.1.0",
"type": "module",
"module": "declarativas.esm.js",
"main": "declarativas.umd.js",
"homepage": "https://declarativas.mrbarry.com",
"license": "MIT",
"repository": {
"url": "https://github.com/mrozbarry/declarativas",
"type": "git"
},
"scripts": {
"test": "ava",
"test:coverage": "c8 --100 ava",
"build": "rollup -c ./rollup.config.js",
"build:demo": "npm run build && cp declarativas.ems.js ./src/demo/",
"prepublishOnly": "npm run build",
"demo": "npm run build:demo && npx srvs --docRoot=./src/demo --scriptRoot=./src/demo"
},
"devDependencies": {
"@rollup/plugin-strip": "^3.0.4",
"@rollup/plugin-terser": "^0.4.4",
"ava": "^6.1.3",
"c8": "^10.1.2",
"eslint": "^7.29.0",
"rollup": "^4.18",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-eslint": "^7.0.0",
"sinon": "^18.0"
},
"browserslist": [
"last 1 Chrome versions",
"last 1 Firefox versions"
],
"volta": {
"node": "20.12.1"
}
}