-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.75 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
{
"name": "@jser/stacked-area-chart-data",
"version": "1.0.0",
"description": "",
"homepage": "https://github.com/jser/stacked-area-chart-data",
"bugs": {
"url": "https://github.com/jser/stacked-area-chart-data/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jser/stacked-area-chart-data.git"
},
"license": "MIT",
"author": "azu",
"sideEffects": false,
"main": "lib/stacked-area-chart-data.js",
"module": "module/stacked-area-chart-data.js",
"types": "lib/stacked-area-chart-data.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"bin/",
"lib/",
"module"
],
"scripts": {
"post": "ts-node src/post.ts",
"item": "ts-node src/item.ts",
"build": "tsc -p .",
"clean": "rimraf lib/ module/",
"prepare": "git config --local core.hooksPath .githook",
"prepublishOnly": "npm run clean && npm run build",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"test": "mocha \"test/**/*.ts\"",
"watch": "tsc -p . --watch"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "none"
},
"devDependencies": {
"@types/lodash.groupby": "^4.6.6",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.20",
"lint-staged": "^10.5.3",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"ts-node-test-register": "^9.0.1",
"typescript": "^4.1.3"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@jser/data-fetcher": "^1.1.6",
"@jser/stat": "^1.1.6",
"dayjs": "^1.10.3",
"lodash.groupby": "^4.6.0"
}
}