-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.7 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.7 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
{
"name": "shape-to-query",
"private": "true",
"type": "module",
"scripts": {
"prepare": "husky",
"postinstall": "patch-package",
"lint": "eslint . --ext .ts --quiet --ignore-path .gitignore",
"test:query": "c8 -o coverage/query --all --reporter=lcov --reporter=text mocha packages/shape-to-query/test/store.test.ts",
"test:unit": "c8 -o coverage/unit --all --reporter=lcov --reporter=text mocha --recursive packages/**/*.test.ts --exclude packages/shape-to-query/test/store.test.ts",
"test": "run-p test:*",
"prebuild": "npm run docs",
"build": "yarn run --cwd=packages/demo build",
"build:spec": "docker compose run --rm bikeshed --allow-nonlocal-files spec",
"docs": "find packages/demo/public -type f -name index.bs -exec yarn build:spec {} \\;",
"docs:watch": "docker compose run --rm --publish 8000:8000 bikeshed --allow-nonlocal-files serve",
"release": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@rdfjs/types": "^2",
"@tpluscode/eslint-config": "0.6.4",
"@types/mocha": "^10.0.10",
"@types/node": "^25",
"@types/sinon-chai": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"c8": "^10.1.3",
"husky": "^9.1.4",
"jest-resolve": "^29.5.0",
"lint-staged": "^15",
"mocha": "^11.7.5",
"npm-run-all": "^4.1.5",
"patch-package": "^8.0.1",
"sinon-chai": "^4.0.0",
"tsx": "^4.21.0",
"typescript": "^5.7.2"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --quiet"
]
},
"madge": {
"detectiveOptions": {
"ts": {
"skipTypeImports": true
}
}
}
}