forked from sinonjs/sinon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.91 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
{
"name": "sinon",
"description": "JavaScript test spies, stubs and mocks.",
"version": "2.0.0-pre.3",
"homepage": "http://sinonjs.org/",
"author": "Christian Johansen",
"repository": {
"type": "git",
"url": "http://github.com/sinonjs/sinon.git"
},
"bugs": {
"mail": "christian@cjohansen.no",
"url": "http://github.com/sinonjs/sinon/issues"
},
"license": "BSD-3-Clause",
"scripts": {
"ci-test": "npm run lint && ./scripts/ci-test.sh",
"test-node": "mocha --recursive -R dot test/",
"test-headless": "mochify --recursive -R dot --grep WebWorker --invert test/",
"test-coverage": "mochify --recursive -R dot --grep WebWorker --invert --plugin [ mochify-istanbul --report text --report lcovonly --dir ./coverage ] test/",
"test-cloud": "npm run test-headless -- --wd",
"test-webworker": "browserify --no-commondir --full-paths -p [ mocaccino -R spec --color ] test/webworker/webworker-support-assessment.js | phantomic --web-security false",
"test": "npm run test-node && npm run test-headless && npm run test-webworker",
"lint": "eslint .",
"prepublish": "rimraf pkg && ./build",
"eslint-pre-commit": "./scripts/eslint-pre-commit"
},
"pre-commit": [
"eslint-pre-commit"
],
"dependencies": {
"formatio": "1.1.1",
"lolex": "^1.4.0",
"samsam": "^1.1.3",
"text-encoding": "0.5.2"
},
"devDependencies": {
"browserify": "^13.0.0",
"eslint": "^3.1.1",
"eslint-config-defaults": "^9.0.0",
"eslint-plugin-mocha": "^4.2.0",
"mocaccino": "^1.8.2",
"mocha": "^2.4.5",
"mochify": "^2.17.0",
"mochify-istanbul": "^2.4.1",
"phantomic": "^1.4.0",
"pre-commit": "^1.1.2",
"referee": "^1.2.0",
"rimraf": "^2.5.3"
},
"files": [
"lib",
"pkg",
"AUTHORS",
"CONTRIBUTING.md",
"Changelog.txt",
"LICENSE",
"README.md"
],
"main": "./lib/sinon.js",
"engines": {
"node": ">=0.1.103"
}
}