-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.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
{
"name": "@jser/data-fetcher",
"version": "2.0.0",
"description": "Data Fetcher library for dataset.",
"keywords": [
"data",
"jser"
],
"homepage": "https://github.com/jser/dataset/tree/master/packages/@jser/data-fetcher/",
"bugs": {
"url": "https://github.com/jser/dataset/issues"
},
"license": "MIT",
"author": "azu",
"files": [
"bin/",
"lib/",
"src/"
],
"main": "lib/data-fetcher.js",
"types": "lib/data-fetcher.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/jser/dataset.git"
},
"scripts": {
"build": "cross-env NODE_ENV=production tsc -p .",
"clean": "rimraf lib/",
"prepublish": "npm run --if-present build",
"test": "mocha \"test/**/*.ts\"",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"watch": "tsc -p . --watch"
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.1",
"cross-env": "^7.0.3",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"ts-node-test-register": "^10.0.0",
"typescript": "^5.1.3"
},
"publishConfig": {
"access": "public"
}
}