forked from pretenderjs/pretender
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.04 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
{
"name": "pretender",
"version": "3.0.0",
"main": "./dist/pretender.js",
"module": "./src/pretender.es.js",
"types": "index.d.ts",
"description": "Pretender is a mock server library for XMLHttpRequest and Fetch, that comes with an express/sinatra style syntax for defining routes and their handlers.",
"license": "MIT",
"engines": {
"node": "6.* || 8.* || 10.* || >= 11.*"
},
"scripts": {
"prepublishOnly": "npm run build && npm run tests-only",
"pretest": "bower install",
"build": "rollup --config",
"test": "npm run lint && npm run jscs && npm run tests-only",
"test-ci": "npm run pretest && npm run build && npm run lint && npm run jscs && npm run tests-only-ci",
"tests-only": "karma start --single-run",
"tests-only-ci": "karma start --single-run --browsers PhantomJS",
"lint": "jshint test",
"jscs": "jscs test",
"test:server": "karma start --no-single-run"
},
"repository": {
"type": "git",
"url": "https://github.com/pretenderjs/pretender.git"
},
"devDependencies": {
"abortcontroller-polyfill": "^1.1.9",
"bower": "^1.8.2",
"coveralls": "^2.11.3",
"es6-promise": "^4.0.5",
"jscs": "^3.0.7",
"jshint": "^2.8.0",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.4",
"karma-qunit": "^2.1.0",
"karma-sinon": "^1.0.5",
"phantomjs": "^2.1.7",
"qunit": "^2.6.1",
"rollup": "0.68.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-typescript": "^1.0.0",
"sinon": "^3.2.1",
"tslib": "^1.9.3",
"typescript": "~3.1.1"
},
"dependencies": {
"whatwg-fetch": "^3.0.0",
"fake-xml-http-request": "^2.0.0",
"route-recognizer": "^0.3.3"
},
"jspm": {
"shim": {
"pretender": {
"deps": [
"route-recognizer",
"fake-xml-http-request",
"whatwg-fetch"
],
"exports": "Pretender"
}
}
}
}