-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·47 lines (47 loc) · 1.53 KB
/
package.json
File metadata and controls
executable file
·47 lines (47 loc) · 1.53 KB
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
{
"name": "@alt-javascript/random-api-minimal",
"version": "1.0.0",
"description": "",
"author": "Craig Parravicini",
"keywords": [],
"main": "index.js",
"type": "module",
"scripts": {
"lint": "npx eslint \"./*.js\" \"./test/**/*.js\" --fix",
"test": "npm run test:unit",
"test:unit": "npm run test:tdd",
"test:tdd": "mocha --require test/fixtures/index.js",
"test:bdd": "npm run cucumber",
"coverage": "npm run c8",
"mocha": "mocha --require test/fixtures/index.js",
"cucumber": "npx run-script-os",
"cucumber:windows": ".\\node_modules\\.bin\\cucumber-js.cmd features\\*.feature --publish-quiet",
"cucumber:macos:nix:default": "./node_modules/.bin/cucumber-js features\\*.feature --publish-quiet",
"c8": "c8 --reporter=json-summary --reporter=text-summary --reporter=lcov npm run test"
},
"license": "MIT",
"dependencies": {
"@alt-javascript/boot": "^1.0.15",
"aws-sdk": "^2.1101.0"
},
"devDependencies": {
"@alt-javascript/config": "^2.0.1",
"@alt-javascript/logger": "^2.0.5",
"@babel/eslint-parser": "^7.15.0",
"@cucumber/cucumber": "^7.3.1",
"babel-eslint": "^10.1.0",
"c8": "^7.11.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"config": "^3.3.6",
"cucumber": "^7.0.0-rc.0",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-cucumber": "^1.4.0",
"eslint-plugin-import": "^2.23.4",
"express": "^4.17.3",
"mocha": "^9.0.3",
"run-script-os": "^1.1.6",
"supertest": "^6.2.2"
}
}