forked from C2FO/fast-csv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.46 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
{
"name": "fast-csv",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"clean": "lerna run clean",
"build": "lerna run build",
"lerna:pub": "lerna publish from-git",
"lerna:version": "lerna version",
"release": "npm run build && npm run lerna:version && npm run lerna:pub",
"test": "npm run lint && npm run jest && npm run examples",
"lint": "npm run lint:ts && npm run lint:js",
"lint:fix": "npm run lint:ts -- --fix && npm runlint:js -- --fix",
"lint:ts": "eslint --ext=.ts .",
"lint:js": "eslint --ext=.js ./examples/**/examples/**/*.js",
"jest": "jest --runInBand --coverage",
"examples": "lerna run all-examples",
"benchmarks": "lerna run benchmarks --stream"
},
"repository": {
"type": "git",
"url": "[email protected]:C2FO/fast-csv.git"
},
"devDependencies": {
"@commitlint/cli": "13.1.0",
"@commitlint/config-angular": "13.1.0",
"@types/jest": "27.0.0",
"coveralls": "3.1.1",
"@typescript-eslint/eslint-plugin": "4.29.1",
"@typescript-eslint/parser": "4.29.1",
"eslint": "7.32.0",
"eslint-config-airbnb-typescript": "12.3.1",
"eslint-plugin-tsdoc": "0.2.14",
"eslint-plugin-jest": "24.4.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.24.0",
"eslint-plugin-prettier": "3.4.0",
"husky": "7.0.1",
"jest": "26.6.3",
"lerna": "4.0.0",
"prettier": "2.3.2",
"ts-jest": "26.5.6",
"typescript": "4.0.5"
}
}