forked from Vincent-Pang/builder-pattern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.35 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
57
{
"name": "mock-build",
"version": "1.0.3",
"private": false,
"homepage": "https://github.com/seek-oss/mock-build#readme",
"bugs": {
"url": "https://github.com/seek-oss/mock-build/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seek-oss/mock-build.git"
},
"license": "MIT",
"exports": {
".": {
"require": "./lib-commonjs/index.js",
"import": "./lib-es2015/index.js",
"types": "./lib-types/index.d.ts"
}
},
"main": "./lib-commonjs/index.js",
"module": "./lib-es2015/index.js",
"types": "./lib-types/index.d.ts",
"files": [
"lib*/**/*.d.ts",
"lib*/**/*.js",
"lib*/**/*.js.map",
"lib*/**/*.json"
],
"scripts": {
"build": "skuba build-package",
"format": "skuba format",
"lint": "skuba lint",
"test": "skuba test --coverage",
"test:watch": "skuba test --watch",
"release": "pnpm build && changeset publish",
"changeset-version": "changeset version && prettier --write ."
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@changesets/get-github-info": "^0.5.2",
"skuba": "7.1.1"
},
"packageManager": "[email protected]",
"publishConfig": {
"provenance": true
},
"skuba": {
"entryPoint": "src/index.ts",
"template": null,
"type": "package",
"version": "7.1.1"
},
"volta": {
"node": "18.12.1"
}
}