-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.76 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
59
60
61
62
63
64
65
66
{
"type": "module",
"name": "underwriter",
"version": "1.0.0",
"description": "An automated Promise Registry",
"author": "Joseph Dalrymple <[email protected]>",
"main": "lib/index.js",
"files": [
"lib/",
"README.md",
"LICENSE.md"
],
"scripts": {
"build": "npm run build:clean",
"build:clean": "npm run clean; npm run build:quick",
"build:quick": "npx rollup --config rollup.config.js",
"clean": "rm -rf lib",
"watch": "npm run build:quick -- --watch",
"start": "npm run watch",
"test": "npm run test-eslint && npm run coverage",
"test-md": "npx markdownlint --fix ./README.md",
"test-eslint": "npx eslint --fix ./src/**/*.js",
"test-mocha": "npx mocha --config ./.mocharc.jsonc",
"test-mocha:watch": "npx mocha --config ./.mocharc.jsonc --watch",
"coverage": "npx c8 --check-coverage npm run test-mocha"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.18.9",
"@rollup/plugin-babel": "^6.0.3",
"c8": "^7.13.0",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"markdownlint-cli": "^0.33.0",
"mocha": "^10.2.0",
"rollup": "^3.15.0",
"sinon": "^15.0.1"
},
"keywords": [
"promise",
"registry",
"guarantee",
"guarantor",
"warranty",
"warrantor",
"fulfill",
"reject",
"dependency",
"injection"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Swivelgames/underwriter.git"
},
"bugs": {
"url": "https://github.com/Swivelgames/underwriter/issues"
},
"homepage": "https://github.com/Swivelgames/underwriter#readme",
"license": "GNUv3"
}