forked from sinonjs/nise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.69 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": "nise",
"version": "1.4.8",
"description": "Fake XHR and server",
"keywords": [
"test",
"testing",
"fake",
"mock",
"xhr",
"server"
],
"repository": {
"type": "git",
"url": "http://github.com/sinonjs/nise.git"
},
"main": "lib/index.js",
"module": "nise.js",
"scripts": {
"bundle": "browserify -s nise -o nise.js lib/index.js",
"lint": "eslint .",
"prepublish": "npm run bundle",
"prepublishOnly": "mkdocs gh-deploy -r upstream || mkdocs gh-deploy -r origin",
"test": "mocha lib/**/*.test.js",
"test:coverage": "nyc --reporter=lcov --reporter=text --all npm test -- --reporter dot",
"test:headless": "mochify --https-server --plugin [ proxyquire-universal ] lib/**/*.test.js",
"precommit": "npm run lint -- --fix && npm run test",
"prepush": "npm run lint && npm run test"
},
"author": "",
"license": "BSD-3-Clause",
"nyc": {
"exclude": [
"nise.js",
"coverage/**",
"**/*.test.js"
]
},
"files": [
"nise.js",
"lib/**/*.js"
],
"devDependencies": {
"@sinonjs/referee": "^2.0.0",
"browserify": "^16.2.3",
"eslint": "^4.17.0",
"eslint-config-sinon": "^1.0.1",
"eslint-plugin-ie11": "1.0.0",
"eslint-plugin-mocha": "^4.9.0",
"husky": "^0.14.3",
"jsdom": "11.6.2",
"jsdom-global": "3.0.2",
"mocha": "^5.0.0",
"mochify": "^5.8.1",
"nyc": "^13.0.0",
"proxyquire": "^1.8.0",
"proxyquire-universal": "^1.0.8",
"proxyquireify": "^3.2.1",
"sinon": "^4.2.2"
},
"dependencies": {
"@sinonjs/formatio": "^3.1.0",
"just-extend": "^4.0.2",
"lolex": "^2.3.2",
"path-to-regexp": "^1.7.0",
"text-encoding": "^0.6.4"
}
}