-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.69 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
{
"name": "shape-to-query",
"private": "true",
"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.27.7",
"@rdfjs/types": "^1.1.0",
"@tpluscode/eslint-config": "0.4.9",
"@types/mocha": "^10.0.7",
"@types/sinon-chai": "^3.2.12",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"c8": "^9.1.0",
"husky": "^9.1.4",
"jest-resolve": "^29.5.0",
"lint-staged": "^15",
"madge": "^7.0.0",
"mocha": "^10.7.0",
"npm-run-all": "^4.1.5",
"patch-package": "^8.0.0",
"sinon-chai": "^3.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.0.4"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --quiet"
]
},
"madge": {
"detectiveOptions": {
"ts": {
"skipTypeImports": true
}
}
}
}