This repository has been archived by the owner on Jul 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.84 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
{
"name": "@bigtest/mirage",
"version": "0.0.1",
"description": "A client-side server to develop, test and prototype your app.",
"main": "dist/index.js",
"module": "lib/index.js",
"scripts": {
"build": "rollup --config",
"start": "karma start",
"test": "karma start --single-run",
"postpublish": "bigtest-tag-version",
"lint": "eslint ./"
},
"eslintIgnore": [
"/dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bigtestjs/mirage.git"
},
"keywords": [
"test",
"mock",
"server",
"xhr",
"xmlhttprequest",
"rest",
"graphql",
"fetch",
"react",
"ember",
"angular"
],
"author": "Frontside Engineering <engineering@frontside.io>",
"license": "ISC",
"bugs": {
"url": "https://github.com/bigtestjs/mirage/issues"
},
"homepage": "https://github.com/bigtestjs/mirage/blob/master/README.md",
"devDependencies": {
"@bigtest/meta": "bigtestjs/meta",
"@babel/core": "^7.0.0-beta.0",
"babel-loader": "^8.0.0-beta.0",
"@babel/preset-env": "^7.0.0-beta.0",
"eslint": "^4.16.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.0.1",
"karma-jquery": "^0.2.2",
"karma-mocha-reporter": "^2.2.3",
"karma-qunit": "^1.2.1",
"karma-webpack": "^2.0.4",
"qunit": "^1.0.0",
"rollup": "^0.53.0",
"rollup-plugin-babel": "^4.0.0-beta.0",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"webpack": "^3.3.0"
},
"dependencies": {
"faker": "^4.1.0",
"inflected": "^2.0.2",
"lodash": "^4.17.4",
"pretender": "^2.0.0"
}
}