forked from yahoo/fetchr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.75 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
{
"name": "fetchr",
"version": "0.7.9",
"description": "Fetchr augments Flux applications by allowing Flux stores to be used on server and client to fetch data",
"main": "./libs/fetcher.js",
"browser": "./libs/fetcher.client.js",
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "npm run lint:client && npm run lint:server && npm run format:check",
"lint:client": "eslint libs/util/ libs/fetcher.client.js",
"lint:server": "eslint --parser-options=ecmaVersion:latest libs/fetcher.js",
"test": "npm run test:unit && npm run test:functional",
"test:coverage": "nyc --reporter=lcov npm run test:unit",
"test:unit": "NODE_ENV=test mocha tests/unit/ --recursive --reporter spec --timeout 20000 --exit --require tests/unit/setup.js",
"test:functional": "NODE_ENV=test mocha tests/functional/*.test.js --reporter spec --exit -t 10000"
},
"repository": {
"type": "git",
"url": "[email protected]:yahoo/fetchr"
},
"author": "Rajiv Tirumalareddy <[email protected]>",
"licenses": [
{
"type": "BSD",
"url": "https://github.com/yahoo/fetchr/blob/master/LICENSE.md"
}
],
"dependencies": {
"fumble": "^0.1.0"
},
"devDependencies": {
"abortcontroller-polyfill": "^1.7.3",
"chai": "^4.2.0",
"eslint": "^8.0.0",
"express": "^4.17.1",
"fetch-mock": "^9.11.0",
"mocha": "^10.0.0",
"mockery": "^2.0.0",
"node-fetch": "^2.6.2",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"puppeteer": "^19.1.2",
"sinon": "^15.0.0",
"supertest": "6.3.3",
"webpack": "^5.51.1"
},
"keywords": [
"yahoo",
"flux",
"react",
"fetchr",
"dispatchr"
],
"prettier": {
"singleQuote": true,
"tabWidth": 4
}
}