-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.59 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
{
"name": "@jser/stat",
"version": "2.0.0",
"description": "JSer.info stat library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"data/*.js",
"lib",
"src"
],
"scripts": {
"prepublish": "npm run --if-present build",
"build": "cross-env NODE_ENV=production tsc -p .",
"watch": "tsc -p . --watch",
"test": "mocha 'test/**/*.js'",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx,css}'",
"precommit": "lint-staged",
"postcommit": "git reset",
"clean": "rimraf lib/"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/jser/dataset.git"
},
"keywords": [
"jser"
],
"author": "azu",
"license": "MIT",
"bugs": {
"url": "https://github.com/jser/dataset/issues"
},
"homepage": "https://github.com/jser/dataset",
"devDependencies": {
"@jser/data-fetcher": "^2.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.1",
"cross-env": "^7.0.3",
"lint-staged": "^13.2.2",
"mocha": "^10.2.0",
"power-assert": "^1.6.1",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"dependencies": {
"binarysearch": "^1.0.0"
},
"prettier": {
"printWidth": 120,
"tabWidth": 4
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write",
"git add"
]
}
}