-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.16 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.16 KB
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
{
"name": "@via-org/data-utils",
"version": "0.3.1",
"type": "module",
"exports": {
"import": "./lib/index.mjs",
"require": "./lib/index.cjs"
},
"module": "./lib/index.mjs",
"main": "./lib/index.cjs",
"types": "types/index.d.ts",
"files": [
"lib",
"types"
],
"author": "Donald Geddes",
"licence": "MIT",
"repository": "https://github.com/@via-org/data-utils.git",
"publishConfig": {
"access": "public"
},
"prettier": "@hbauer/prettier-config",
"eslintConfig": {
"extends": "@hbauer/eslint-config"
},
"scripts": {
"build": "shx rm -rf ./lib ./types && rollup -c && tsc -p jsconfig.json",
"test": "ava",
"prepublishOnly": "npm run build",
"prepare": "husky install"
},
"ava": {
"files": [
"**/*.test.js"
]
},
"devDependencies": {
"@hbauer/eslint-config": "^1.4.1",
"@hbauer/prettier-config": "^1.1.0",
"ava": "^4.0.1",
"eslint": "^8.9.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"rollup": "^2.67.2",
"shx": "^0.3.4",
"typescript": "^4.5.5"
},
"dependencies": {
"@hbauer/convenience-functions": "^0.11.0"
}
}