-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1017 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1017 Bytes
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
{
"name": "jibs",
"version": "1.1.1",
"description": "",
"main": "./lib/index.js",
"browser": "./dist/index.js",
"type": "module",
"scripts": {
"coverage": "clear ; node ./node_modules/.bin/nyc ./node_modules/.bin/jasmine",
"test": "node ./node_modules/.bin/jasmine",
"test-watch": "watch 'clear ; node ./node_modules/.bin/jasmine' . --wait=2 --interval=1",
"build": "./node_modules/.bin/webpack",
"prepublishOnly": "NODE_ENV=production ./node_modules/.bin/webpack"
},
"keywords": [
"vdom",
"html",
"spa",
"react",
"vue",
"angular"
],
"author": "Wyatt Greenway",
"license": "MIT",
"devDependencies": {
"@spothero/eslint-plugin-spothero": "github:spothero/eslint-plugin-spothero",
"@webpack-cli/generators": "^2.5.0",
"eslint": "^8.27.0",
"jasmine": "^4.5.0",
"nyc": "^15.1.0",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"deadbeef": "^1.1.1"
}
}