-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.22 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": "cmsdata-client",
"version": "1.1.2",
"description": "A JavaScript client for CMS Data",
"repository": {
"type": "git",
"url": "https://github.com/consensusnetworks/cmsdata-client"
},
"main": "index.js",
"scripts": {
"doc": "jsdoc -d docs index.js",
"test": "tap --no-coverage --reporter=specy -J",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"test:report": "tap --coverage-report=html",
"build:browser": "esbuild build/client.js --bundle --outfile=build/bundle.js --minify --sourcemap --target=chrome58,firefox57,safari11,edge16",
"build:ts": "npx tsc"
},
"keywords": [
"cms",
"cms client"
],
"author": "Consensus Networks",
"license": "MIT",
"dependencies": {
"@types/papaparse": "^5.2.6",
"esbuild": "^0.12.15",
"json2csv": "^5.0.6",
"node-fetch": "^2.6.1",
"papaparse": "^5.3.1"
},
"devDependencies": {
"@types/json2csv": "^5.0.3",
"@types/node": "^16.4.2",
"@types/node-fetch": "^2.5.12",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jsdoc": "^3.6.7",
"prettier": "^2.2.1",
"tap": "^15.0.6",
"typescript": "^4.3.5"
}
}