-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.83 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
58
{
"name": "@typhonjs-utils/package-json",
"description": "Provides several utility functions for working with and retrieving `package.json`.",
"version": "0.7.0",
"author": "Michael Leahy <[email protected]> (https://github.com/typhonrt)",
"type": "module",
"exports": {
".": {
"types": "./src/functions.d.ts",
"import": "./src/functions.js"
},
"./plugin": "./src/plugin.js"
},
"contributors": [
"Michael Leahy <[email protected]> (https://github.com/typhonrt)"
],
"devDependencies": {
"@typhonjs-build-test/node": "^0.0.11",
"@typhonjs-plugin/manager": "^0.1.0",
"@typhonjs-typedoc/typedoc-pkg": "^0.0.2"
},
"engines": {
"node": ">=12"
},
"files": [
"/src",
"/types"
],
"homepage": "https://github.com/typhonjs-node-utils/package-json#readme",
"keywords": [
"typhonjs",
"utils",
"package.json"
],
"typedocOptions": {
"dmtLinksService": {
"Discord": "https://typhonjs.io/discord/",
"GitHub": "https://github.com/typhonjs-node-utils/package-json",
"NPM": "https://www.npmjs.com/package/@typhonjs-utils/package-json"
}
},
"license": "MPL-2.0",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/typhonjs-node-utils/package-json/issues"
},
"repository": "github:typhonjs-node-utils/package-json",
"apidocs": "https://typhonjs-node-utils.github.io/package-json/",
"scripts": {
"docs": "typedoc-pkg --api-link esm",
"eslint": "eslint .",
"posttest": "npm run eslint",
"prepublishOnly": "npm run types && npm run test",
"test": "c8 --reporter=lcov --reporter=text-summary mocha -colors \"test/src/**/*.test.js\"",
"test-functions": "c8 --reporter=lcov --reporter=text-summary mocha -colors \"test/src/functions/**/*.test.js\"",
"types": "esm-d-ts gen src/functions.js"
}
}