forked from dmonad/lib0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.37 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
{
"name": "lib0",
"version": "0.1.7",
"description": "",
"sideEffects": false,
"dependencies": {},
"devDependencies": {
"@types/node": "^13.1.6",
"fake-indexeddb": "^2.0.5",
"live-server": "^1.2.1",
"nyc": "^15.0.0",
"rollup": "^1.1.2",
"standard": "^14.0.0",
"typescript": "^3.7.4"
},
"scripts": {
"dist": "rm -rf dist && rollup -c",
"debug": "live-server --port=3443 --entry-file=test.html",
"test": "npm run lint && npm run dist && nyc --check-coverage --lines 100 --branches 100 --functions 100 --statements 100 node ./dist/test.js --repitition-time 50 --production",
"test-extensive": "npm test -- --repitition-time 30000 --extensive",
"test-code-coverage": "npm run dist && nyc --reporter html node ./dist/test.js --production",
"trace-deopt": "clear && rollup -c && node --trace-deopt dist/test.js",
"trace-opt": "clear && rollup -c && node --trace-opt dist/test.js",
"lint": "standard && tsc",
"preversion": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmonad/lib0.git"
},
"author": "Kevin Jahns <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dmonad/lib0/issues"
},
"homepage": "https://github.com/dmonad/lib0#readme",
"standard": {
"ignore": [
"/dist",
"/node_modules",
"/docs"
]
}
}