-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.62 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
{
"name": "@enhance/cli",
"version": "1.2.1",
"bin": {
"enhance": "src/index.js"
},
"main": "src/index.js",
"engines": {
"node": ">=14"
},
"scripts": {
"test": "npm run lint && npm run coverage",
"test:unit": "cross-env tape 'test/unit/**/*-test.js' | tap-arc",
"test:integration": "cross-env NODE_ENV=testing tape 'test/integration/**/*-test.js' | tap-arc",
"test:integration:slow": "cross-env NODE_ENV=testing tape 'test/integration/**/*-test-slow.js' | tap-arc",
"coverage": "nyc --reporter=lcov --reporter=text npm run test:unit",
"lint": "eslint . --fix"
},
"license": "Apache-2.0",
"dependencies": {
"@apidevtools/json-schema-ref-parser": "9.1.0",
"@architect/inventory": "^4.0.5",
"@architect/parser": "^7.0.1",
"@architect/sandbox": "^6.0.5",
"@architect/utils": "^4.0.6",
"@colors/colors": "1.6.0",
"@enhance/create": "^4.1.2",
"enquirer": "^2.4.1",
"escodegen": "^2.1.0",
"esprima": "^4.0.1",
"is-potential-custom-element-name": "^1.0.1",
"jsonschema": "^1.4.1",
"lambda-runtimes": "^2.0.2",
"minimist": "^1.2.8",
"node-machine-id": "^1.1.12",
"pluralize": "^8.0.0",
"restore-cursor": "^3.1.0",
"strip-ansi": "^6.0.1",
"tiny-json-http": "^7.5.1",
"tmp": "^0.2.3",
"ws": "^8.18.0"
},
"devDependencies": {
"@architect/eslint-config": "^3.0.0",
"@architect/plugin-node-prune": "2.1.0-RC.0",
"cross-env": "^7.0.3",
"eslint": "^9.9.1",
"fs-extra": "~11.2.0",
"nyc": "^17.0.0",
"proxyquire": "~2.1.3",
"string-argv": "~0.3.2",
"tap-arc": "~1.3.2",
"tape": "~5.8.1"
}
}