-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.34 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
{
"name": "loopback-jest",
"version": "1.3.0",
"description": "Jest matchers for loopback",
"main": "dist/loopback-jest.js",
"scripts": {
"test": "npx eslint . && npx jest --coverage",
"build": "rollup -c",
"dev": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/InCuca/loopback-jest.git"
},
"keywords": [
"jest",
"jest-plugin",
"loopback"
],
"author": "Walker at incuca.com.br",
"license": "MIT",
"bugs": {
"url": "https://github.com/InCuca/loopback-jest/issues"
},
"homepage": "https://github.com/InCuca/loopback-jest#readme",
"dependencies": {
"loopback": "^3.19.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"conventional-changelog-cli": "^1.3.21",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.1",
"jest": "^22.4.3",
"regenerator-runtime": "^0.11.1",
"rollup": "^0.57.1",
"rollup-plugin-auto-external": "^1.2.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.3.0"
},
"files": [
"dist",
"setup.js"
]
}