-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.52 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
67
68
69
70
71
72
73
74
75
76
{
"author": "Julian Aubourg <[email protected]> (http://jaubourg.net)",
"bin": {
"wires": "./bin.js"
},
"bugs": "https://github.com/jaubourg/wires",
"description": "simple configuration utility with smart module wiring for unobtrusive dependency injection",
"devDependencies": {
"@rollup/plugin-commonjs": "22.0.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.3.0",
"eslint": "8.16.0",
"eslint-config-creative-area": "0.11.1",
"eslint-formatter-codeframe": "7.32.1",
"fs-extra": "10.1.0",
"tap-diff": "0.1.1",
"tape": "5.5.3",
"nyc": "15.1.0",
"peggy": "1.2.0",
"rollup": "2.74.1"
},
"engines": {
"node" : ">=12"
},
"eslintConfig": {
"extends": "creative-area/es2021/script",
"env": {
"node": true
},
"overrides": [ {
"extends": "creative-area/es2021/module",
"files": "**/*.mjs",
"parserOptions": {
"ecmaVersion": 2022
},
"rules": {
"prefer-named-capture-group": "off"
}
} ],
"parserOptions": {
"ecmaVersion": 2022
},
"rules": {
"global-require": "off",
"no-sync": "off",
"prefer-named-capture-group": "off"
}
},
"exports": {
".": {
"import": "./loader.mjs",
"require": "./index.js"
},
"./lib/cli.js": "./lib/cli.js",
"./rollup": "./rollup.js"
},
"license": "MIT",
"main": "./index.js",
"name": "wires",
"nyc": {
"all": true,
"cache": true,
"exclude": [ "publish/lib/exportable/*.mjs", "publish/lib/parse/index.js" ],
"extension": [ ".js", ".mjs" ],
"include": [ "publish/lib", "publish/bin.js", "publish/index.js", "publish/loader.mjs", "publish/rollup.js" ]
},
"private": true,
"removePublish": [ "devDependencies", "eslintConfig", "nyc", "scripts" ],
"repository" : "github:jaubourg/wires",
"scripts": {
"coverage": "node scripts/preparePublish 0.0.0 && nyc instrument publish --in-place && WIRES_DIR=publish nyc --eager node test",
"coverage_html": "$npm_execpath run coverage && node scripts/preparePublish 0.0.0 && nyc report --reporter=html",
"coverage_lcov": "$npm_execpath run coverage && nyc report --reporter=text-lcov > coverage.lcov && node scripts/lcov",
"test": "node test"
}
}