This repository has been archived by the owner on Apr 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
119 lines (119 loc) · 3.79 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "kinto-http",
"version": "5.3.0",
"description": "JavaScript HTTP client for the Kinto API.",
"main": "dist/kinto-http.node.js",
"module": "lib/index.js",
"unpkg": "dist/kinto-http.min.js",
"types": "lib/index.d.ts",
"files": [
"/dist",
"/lib",
"!/dist/test-suite.{js,js.map}"
],
"scripts": {
"build": "npx rimraf dist && tsc -p . --outDir ./lib/ --declaration true",
"build:test-browser": "npx rollup --environment BROWSER_TESTING -c",
"build:demo": "npm run dist && npx shx cp dist/kinto-http.min.js demo/kinto-http.min.js && npx shx cp dist/kinto-http.min.js.map demo/kinto-http.min.js.map",
"build:readme": "npx toctoc -w -d 2 README.md",
"cs-check": "npx prettier -l \"{src,test,bin}/**/*.{js,ts}\"",
"cs-format": "npx prettier \"{src,test,bin}/**/*.{js,ts}\" --write",
"demo": "npm run build:demo && npx http-server demo",
"dist": "npx cross-env NODE_ENV=production rollup -c && npm run dist:fx",
"dist:dev": "npx rollup -c && npm run dist:fx",
"dist:fx": "npx ts-node --skip-project bin/dist-fx.ts",
"docs": "npx typedoc",
"prepublish": "npm run build:readme",
"publish-to-npm": "npm run build && npm run dist && npm publish",
"report-coverage": "npx intern reporters=lcov && npx coveralls -v < ./coverage/lcov.info",
"test": "npm run test-nocover",
"test-cover": "npx intern",
"test-cover-html": "npx intern reporters=htmlcoverage && npx open-cli coverage/index.html",
"test-nocover": "npx intern coverage=false",
"test:chrome": "npm run build:test-browser && npx intern config=@chrome coverage=false",
"test:firefox": "npm run build:test-browser && npx intern config=@firefox coverage=false",
"lint": "npx eslint \"src/**/*.{js,ts}\" \"test/**/*.{js,ts}\""
},
"repository": {
"type": "git",
"url": "https://github.com/Kinto/kinto-http.js.git"
},
"keywords": [
"kinto",
"http",
"client",
"api"
],
"author": "Mozilla <storage-team@mozilla.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Kinto/kinto-http.js/issues"
},
"homepage": "https://github.com/Kinto/kinto-http.js#readme",
"dependencies": {
"uuid": "^8.3.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-inject": "^4.0.3",
"@rollup/plugin-multi-entry": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.3.0",
"@types/node-fetch": "^2.5.12",
"@types/shelljs": "^0.8.9",
"@types/sinon": "^10.0.6",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"atob": "^2.1.2",
"bl": "^5.0.0",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"form-data": "^4.0.0",
"http-server": "^14.0.0",
"intern": "^4.10.0",
"json-schema": "^0.4.0",
"jszip": "^3.7.1",
"kinto-node-test-server": "^2.0.0",
"mitt": "^3.0.0",
"node-fetch": "^2.6.6",
"nyc": "^15.1.0",
"open-cli": "^7.0.1",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"rollup": "^2.59.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-terser": "^7.0.2",
"shelljs": "^0.8.4",
"shx": "^0.3.3",
"sinon": "^13.0.1",
"toctoc": "^0.4.0",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typedoc": "^0.22.8",
"typescript": "^4.4.4"
},
"peerDependencies": {
"atob": ">=2.1.2",
"form-data": ">=4.0.0",
"node-fetch": ">=2.6.6"
},
"peerDependenciesMeta": {
"node-fetch": {
"optional": true
},
"form-data": {
"optional": true
},
"atob": {
"optional": true
}
},
"engines": {
"node": ">=16"
}
}