-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 3.07 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
77
78
79
80
81
82
83
84
85
{
"name": "test-my-ride",
"version": "0.1.23",
"description": "Function that creates boiler plate test file with descriptors and automocks from imports",
"main": "lib/main/index.js",
"module": "lib/module/index.js",
"browser": "lib/browser/index.js",
"contributors": [
"J Hartley <[email protected]> (https://github.com/jamadan)"
],
"scripts": {
"deploy": "npm version patch && npm run compile && npm publish",
"compile": "rm -rf lib && npm run compile:browser && npm run compile:module && npm run compile:main",
"compile:browser": "BABEL_ENV=module rollup -c ./rollup.config.js",
"compile:module": "BABEL_ENV=module babel src --out-dir lib/module --source-maps --config-file ./babel.config.js",
"compile:main": "BABEL_ENV=main babel src --out-dir lib/main --source-maps --config-file ./babel.config.js",
"dev": "NODE_ENV=development && babel-node ./test-harness",
"test": "jest --config=./jest-config.json --coverage",
"test-watch": "jest --config=./jest-config.json --watch",
"lint": "eslint src --color"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamadan/test-my-ride.git"
},
"keywords": [
"mock",
"test"
],
"author": "J Hartley",
"license": "MIT",
"bugs": {
"url": "https://github.com/jamadan/test-my-ride/issues"
},
"homepage": "https://github.com/jamadan/test-my-ride#readme",
"dependencies": {
"@babel/parser": "^7.8.4",
"@babel/runtime": "^7.8.4",
"@babel/traverse": "^7.8.4",
"core-js": "^3.6.4",
"mock-my-ride": "^0.1.6",
"prettier": "^1.19.1",
"read-file": "^0.2.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-function-sent": "^7.8.3",
"@babel/plugin-proposal-json-strings": "^7.8.3",
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
"@babel/plugin-proposal-throw-expressions": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/register": "^7.8.3",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^22.21.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-standard": "^4.0.1",
"fs-extra": "^7.0.1",
"rollup": "^1.31.0",
"rollup-plugin-analyzer": "^3.2.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-terser": "^5.2.0",
"jest": "^25.1.0"
},
"bin": {
"test-my-ride": "./lib/main/bin/global.js"
},
"preferGlobal": true
}