-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.47 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
{
"version": "0.2.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"keywords": [
"soda",
"opendata",
"socrata",
"rxjs",
"typescript",
"javascript"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"test:watch": "tsdx test --watch",
"test:coverage": "tsdx test --coverage",
"lint": "tsdx lint src test",
"lint:fix": "yarn lint --fix",
"prepare": "tsdx build",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn typecheck",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"lint-staged": {
"*.{ts,js,tsx}": [
"eslint --fix"
],
"*.{ts,js,tsx,css,md}": [
"prettier --write"
]
},
"name": "soda-ts",
"author": "[email protected]",
"repository": "https://github.com/data-depot/soda-ts",
"homepage": "https://github.com/data-depot/soda-ts",
"description": "Seamlessly interact with OpenData APIs in TS or JS",
"module": "dist/soda-ts.esm.js",
"devDependencies": {
"@commitlint/config-conventional": "^8.3.4",
"@types/debug": "^4.1.5",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.4",
"@types/papaparse": "^5.0.4",
"@types/ramda": "^0.27.4",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"commitizen": "^4.0.4",
"commitlint": "^8.3.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"jest": "^25.5.0",
"lint-staged": "^10.2.0",
"prettier": "^2.0.5",
"ts-jest": "^25.4.0",
"tsdx": "^0.13.2",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"dependencies": {
"camelcase-keys": "^6.2.2",
"csv-parse": "^4.10.1",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"got": "^11.0.2",
"papaparse": "^5.2.0",
"ramda": "^0.27.0",
"rxjs": "^6.5.5"
}
}