-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.27 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
{
"dependencies": {
"node-fetch": "^2.6.0"
},
"name": "erddap4js",
"description": "ERDDAP library for Node and the browser",
"version": "1.0.0",
"main": "dist/node/erddap4js.js",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^12.12.31",
"@types/node-fetch": "^2.5.5",
"chai": "^4.2.0",
"eslint": "^7.3.1",
"husky": "^4.2.5",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"ts-loader": "^6.2.2",
"ts-node": "^8.9.1",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"scripts": {
"build": "tsc && webpack",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test"
},
"keywords": [
"erddap",
"node",
"browser"
],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/n-a-t-e/erddap4js.git"
},
"files": [
"dist/node/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
}
}