generated from neoncitylights/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.73 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.73 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
53
54
55
56
57
58
59
60
61
62
{
"name": "types-ohq-d3",
"private": true,
"version": "0.0.0",
"description": "Experimental, third-party TypeScript declarations for ObservableHQ and D3 libraries",
"license": "MIT",
"author": {
"name": "Samantha Nguyen",
"url": "https://github.com/neoncitylights"
},
"keywords": [
"typescript"
],
"bugs": "https://github.com/wandering-app/types-ohq-d3/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/wandering-app/types-ohq-d3.git"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/wandering-app"
},
"type": "module",
"directories": {
"test": "tests"
},
"workspaces": [
"packages/**"
],
"scripts": {
"build:typedoc": "npx typedoc",
"build:typedoc-watch": "npm run build:typedoc -- --watch",
"build:all": "npm run build:typedoc",
"clean": "rm -rf ./dist/ ./docs/typedocs/ ./node_modules && rm -rf ./package-lock.json",
"reinstall": "npm run clean && npm install",
"deploy": "gh-pages -d ./docs/typedocs",
"test": "vitest",
"test:ci": "npm run test -- run",
"test:ui": "npm run test -- --ui",
"test:watch": "npm run test -- --watch",
"test:all": "npm run test:ci && npm run lint",
"lint": "eslint packages --ext .ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run test:all",
"preversion": "npm run lint",
"version": "npm run lint && git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.13.1",
"@typescript-eslint/parser": "6.13.1",
"@vitest/ui": "^0.34.6",
"eslint": "8.54.0",
"gh-pages": "6.0.0",
"jsdom": "^22.1.0",
"typedoc": "0.25.4",
"typescript": "5.3.2",
"vite": "^5.0.5",
"vite-plugin-dts": "^3.6.4",
"vitest": "^0.34.6"
}
}