-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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
{
"name": "fake-hr",
"version": "0.0.0-semantically-released",
"description": "HR data sets for mocking and testing",
"homepage": "https://github.com/seek-oss/fake-hr#readme",
"bugs": {
"url": "https://github.com/seek-oss/fake-hr/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seek-oss/fake-hr.git"
},
"license": "MIT",
"sideEffects": false,
"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"
],
"scripts": {
"build": "skuba build-package",
"format": "skuba format",
"lint": "skuba lint",
"release": "pnpm run --silent build && skuba release",
"start": "skuba start src/readme.ts",
"test": "skuba test",
"test:ci": "skuba test --coverage"
},
"dependencies": {},
"devDependencies": {
"skuba": "9.1.0"
},
"packageManager": "[email protected]",
"publishConfig": {
"provenance": true
},
"skuba": {
"entryPoint": null,
"template": "oss-npm-package",
"type": "package",
"version": "9.0.0"
}
}