forked from hubjac1/simple-spreadsheet-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.86 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
{
"name": "taktik-simple-spreadsheet-reader",
"version": "2.0.2",
"description": "Simple reader for public google spreadsheet",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/taktik/simple-spreadsheet-reader",
"scripts": {
"eslint": "eslint 'src/*.ts'",
"prepublish": "npm run build",
"test": "karma start --no-auto-watch --single-run",
"test:watch": "karma start --browsers Chrome",
"build": "tsc",
"dev": "tsc --watch",
"doc": "typedoc --plugin typedoc-plugin-markdown --out ./temp ./src",
"release": "release-it"
},
"keywords": [
"reader",
"public",
"google",
"spredsheet"
],
"author": "Taktik",
"license": "ISC",
"dependencies": {
"typescript-http-client": "0.10.4"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/sinon": "^9.0.0",
"@types/sinon-chai": "^3.2.4",
"@typescript-eslint/eslint-plugin": "2.26.0",
"@typescript-eslint/parser": "2.26.0",
"chai": "^4.2.0",
"eslint": "6.8.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"husky": "^4.2.5",
"karma": "^5.0.4",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-webpack": "^4.0.2",
"lint-staged": "^10.2.2",
"mocha": "^7.1.2",
"prettier": "^2.3.2",
"release-it": "^13.5.8",
"sinon": "^9.0.2",
"ts-loader": "^7.0.2",
"typedoc": "^0.17.6",
"typedoc-plugin-markdown": "^2.2.17",
"typescript": "^3.8.3",
"webpack": "^4.43.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/*.ts": "eslint --max-warnings 0"
}
}