-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1013 Bytes
/
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
{
"name": "seview",
"version": "2.0.5",
"description": "S-Expression View",
"main": "dist/seview.js",
"scripts": {
"start": "rollup -c",
"watch": "rollup -c -w",
"test": "jest --config jestconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/foxdonut/seview.git"
},
"keywords": [
"data",
"hyperscript",
"s-expression",
"view",
"virtual dom"
],
"author": "foxdonut",
"license": "MIT",
"bugs": {
"url": "https://github.com/foxdonut/seview/issues"
},
"homepage": "https://github.com/foxdonut/seview#readme",
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"eslint": "^8.45.0",
"eslint-config-foxdonut": "^2.1.0",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.6.1",
"rollup": "^3.26.3"
}
}