forked from sinonjs/sinon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.66 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
{
"name": "sinon",
"description": "JavaScript test spies, stubs and mocks.",
"version": "4.2.0",
"homepage": "http://sinonjs.org/",
"author": "Christian Johansen",
"repository": {
"type": "git",
"url": "http://github.com/sinonjs/sinon.git"
},
"bugs": {
"mail": "[email protected]",
"url": "http://github.com/sinonjs/sinon/issues"
},
"license": "BSD-3-Clause",
"scripts": {
"test-node": "mocha --recursive -R dot test/",
"test-dev": "npm run test-node -- --watch -R min",
"test-headless": "mochify --recursive -R dot --grep WebWorker --invert --plugin [ proxyquire-universal ] test/",
"test-coverage": "mochify --recursive -R dot --grep WebWorker --invert --plugin [ proxyquire-universal ] --plugin [ mochify-istanbul --exclude '**/test/**' --report text --report lcovonly --dir ./coverage ] test/",
"test-cloud": "npm run test-headless -- --wd",
"test-webworker": "mochify --https-server 8080 test/webworker/webworker-support-assessment.js",
"test": "run-s test-node test-headless test-webworker",
"check-dependencies": "dependency-check package.json --unused --no-dev --ignore-module coveralls",
"build": "node ./build.js",
"lint": "eslint .",
"lint-markdown": "find docs -type f -name '*.md' ! -name 'changelog.md' | xargs markdownlint",
"precommit": "lint-staged",
"pretest-webworker": "npm run build",
"prebuild": "rimraf pkg && npm run check-dependencies",
"prepublishOnly": "npm run build",
"preversion": "./scripts/preversion.sh",
"postversion": "./scripts/postversion.sh"
},
"lint-staged": {
"*.js": "eslint",
"docs/**/*.md": "markdownlint"
},
"dependencies": {
"diff": "^3.1.0",
"formatio": "1.2.0",
"lodash.get": "^4.4.2",
"lolex": "^2.2.0",
"nise": "^1.2.0",
"supports-color": "^5.1.0",
"type-detect": "^4.0.5"
},
"devDependencies": {
"browserify": "^15.1.0",
"dependency-check": "^2.9.1",
"eslint": "^4.6.1",
"eslint-config-sinon": "^1.0.0",
"eslint-plugin-ie11": "^1.0.0",
"eslint-plugin-mocha": "^4.2.0",
"husky": "^0.14.2",
"lint-staged": "^6.0.0",
"markdownlint-cli": "^0.6.0",
"mocha": "^4.0.0",
"mochify": "^5.1.0",
"mochify-istanbul": "^2.4.1",
"native-promise-only": "^0.8.1",
"npm-run-all": "^4.0.2",
"proxyquire": "^1.8.0",
"proxyquire-universal": "^1.0.8",
"proxyquireify": "^3.2.1",
"referee": "^1.2.0",
"rimraf": "^2.5.3",
"samsam": "^1.1.3"
},
"files": [
"lib",
"pkg",
"AUTHORS",
"CONTRIBUTING.md",
"History.md",
"LICENSE",
"README.md"
],
"main": "./lib/sinon.js",
"cdn": "./pkg/sinon.js",
"jsdelivr": "./pkg/sinon.js"
}