-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.58 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
{
"name": "progressive-json",
"version": "0.5.0",
"description": "Retrieve JSON progressively",
"main": "index.js",
"type": "module",
"scripts": {
"test": "./node_modules/mocha/bin/mocha.js --require test/setup.js -- test/*.test.js",
"test:gc": "node --expose-gc ./node_modules/mocha/bin/mocha.js --require test/setup.js -- test/*.test.js",
"test:debug": "./node_modules/mocha/bin/mocha.js --require test/setup.js --no-timeouts --inspect-brk -- test/*.test.js",
"test:watch": "./node_modules/mocha/bin/mocha.js --require test/setup.js --parallel --watch -- test/*.test.js",
"coverage": "./node_modules/c8/bin/c8.js ./node_modules/mocha/bin/mocha.js --require test/setup.js --parallel -- test/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chung-leong/progressive-json.git"
},
"keywords": [
"JSON",
"fetch",
"partial"
],
"exports": {
".": "./index.js",
"./server": "./server.js"
},
"files": [
"src/",
"index.js",
"server.js"
],
"author": "Chung Leong",
"license": "MIT",
"bugs": {
"url": "https://github.com/chung-leong/progressive-json/issues"
},
"homepage": "https://github.com/chung-leong/progressive-json#readme",
"peerDependencies": {
"react-seq": ">= 0.9.0"
},
"devDependencies": {
"abort-controller": "^3.0.0",
"c8": "^7.12.0",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"mocha-skip-if": "^1.0.3",
"node-fetch": "^3.3.0",
"random-seed": "^0.3.0",
"react": "^18.2.0",
"react-seq": "^0.9.0",
"react-test-renderer": "^18.2.0"
}
}