-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
56 lines (56 loc) · 1.6 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
{
"name": "aurelia-path",
"version": "1.1.8",
"description": "Utilities for path manipulation.",
"keywords": [
"aurelia",
"path"
],
"homepage": "http://aurelia.io",
"bugs": {
"url": "https://github.com/aurelia/path/issues"
},
"license": "MIT",
"author": "Rob Eisenberg <[email protected]> (http://robeisenberg.com/)",
"main": "dist/commonjs/aurelia-path.js",
"module": "dist/native-modules/aurelia-path.js",
"typings": "dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "http://github.com/aurelia/path"
},
"scripts": {
"lint": "oxlint",
"clean": "rimraf dist",
"test": "bun test --coverage",
"test:watch": "npm run test -- --watch",
"build": "npm run clean && npm run rollup && npm run build:dts",
"build:dts": "tsc --emitDeclarationOnly --declaration --declarationDir dist/types",
"doc": "typedoc --entryPoints src/index.ts --json doc/api.json --pretty false",
"rollup": "rollup -c --esModule",
"precut-release": "npm run test && npm run lint && npm run build",
"cut-release": "commit-and-tag-version -t \"\" -i doc/CHANGELOG.md --skip.commit --skip.tag",
"postcut-release": "npm run doc"
},
"files": [
"dist",
"doc",
"src",
"typings.json",
"README.md",
"LICENSE"
],
"devDependencies": {
"@rollup/plugin-typescript": "11.1.6",
"@types/bun": "1.1.6",
"bun": "1.1.22",
"commit-and-tag-version": "12.4.1",
"cross-env": "7.0.3",
"oxlint": "0.7.0",
"rimraf": "6.0.1",
"rollup": "4.20.0",
"typedoc": "0.26.5",
"typescript": "5.5.4",
"tslib": "2.6.3"
}
}