-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
61 lines (61 loc) · 1.57 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
56
57
58
59
60
61
{
"name": "blockdom",
"version": "0.9.29",
"description": "virtual dom library",
"main": "dist/index.js",
"browser": "dist/blockdom.iife.js",
"module": "dist/blockdom.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=10.15.3"
},
"scripts": {
"build": "rollup -c",
"build:package": "rm -rf dist && tsc",
"release": "standard-version",
"test": "jest",
"test:watch": "jest --watch",
"prettier": "prettier {src/*.ts,src/**/*.ts,tests/*.ts,tests/**/*.ts,doc/*.md,doc/**/*.md,README.md} --write",
"prepare-benchmark": "bash ./benchmark/run.sh",
"typedoc": "typedoc --out doc/api src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ged-odoo/blockdom.git"
},
"keywords": [
"virtual dom"
],
"author": "Géry Debongnie",
"license": "MIT",
"bugs": {
"url": "https://github.com/ged-odoo/blockdom/issues"
},
"homepage": "https://github.com/ged-odoo/blockdom",
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/jsdom": "^16.2.13",
"@types/node": "^16.7.1",
"@types/web": "0.0.22",
"jest": "^27.0.6",
"jest-dom": "^4.0.0",
"jest-environment-jsdom": "^27.0.6",
"jsdom": "^17.0.0",
"prettier": "^2.3.2",
"rollup": "^2.56.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"standard-version": "^9.3.1",
"ts-jest": "^27.0.5",
"typedoc": "^0.22.10",
"typescript": "^4.3.5",
"uglify-es": "^3.3.9"
},
"prettier": {
"printWidth": 100,
"endOfLine": "auto"
}
}