-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.81 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
{
"name": "node-playback-server",
"version": "2.0.3",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "jest --runInBand",
"test:coverage": "yarn test --coverage --collectCoverageFrom='[\"**/src/**/*.js\", \"!**/examples/**\",\"!**/components/**\",\"!**/constants/**\"]'",
"test:watch": "yarn test --watch",
"lint": "eslint --ext .js .",
"build": "rm -rf dist/ && yarn babel lib --out-dir dist",
"prepublishOnly": "yarn lint && yarn test && yarn build"
},
"files": [
"dist/**/*"
],
"bin": "dist/cli/index.js",
"author": "StashAway",
"repository": {
"type": "git",
"url": "https://github.com/stashaway-engineering/node-playback-server.git"
},
"bugs": {
"url": "https://github.com/stashaway-engineering/node-playback-server/issues"
},
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.4.4",
"arg": "^4.1.0",
"axios": "^0.24.0",
"body-parser": "^1.19.0",
"chalk": "^2.4.2",
"express": "^4.17.1",
"form-data": "^4.0.0",
"formidable": "^1.2.2",
"fs-extra": "^8.0.1",
"lodash": "^4.17.13",
"md5": "^2.3.0",
"md5-file": "^4.0.0",
"tar": "^4.4.8"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/preset-env": "^7.4.4",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"jest": "^24.8.0",
"jest-watch-typeahead": "^0.3.1",
"sinon": "^7.3.2"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/?(*.)(spec|test).js?(x)"
],
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
],
"watchPathIgnorePatterns": [
".recording"
]
}
}