-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
70 lines (70 loc) · 1.87 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
{
"name": "sinon-test",
"version": "3.1.6",
"description": "",
"main": "lib/index.js",
"browser": "dist/sinon-test.js",
"module": "dist/sinon-test-es.js",
"scripts": {
"build": "run-s build:dist-folder build:bundle",
"build:bundle": "rollup -c",
"build:dist-folder": "mkdirp dist",
"test": "mocha",
"test-coverage": "nyc --reporter text --reporter html --reporter lcovonly npm run test",
"//integration-test": "This cannot run as a prepare step, as it will trigger a loop",
"integration-test": "test-repos/do-test.sh",
"lint": "eslint .",
"prettier:check": "prettier --check '**/*.{js,css,md}'",
"prettier:write": "prettier --write '**/*.{js,css,md}'",
"prepare": "run-p test lint build",
"preversion": "npm run integration-test && ./scripts/preversion.sh"
},
"greenkeeper": {
"ignore": [
"rollup"
]
},
"author": "Christian Johansen",
"repository": {
"type": "git",
"url": "http://github.com/sinonjs/sinon-test.git"
},
"files": [
"dist/",
"lib/"
],
"license": "BSD-3-Clause",
"devDependencies": {
"@sinonjs/eslint-config": "^4.0.5",
"@sinonjs/referee": "^9.1.1",
"es6-promise": "^4.2.8",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-ie11": "^1.0.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^4.3.8",
"lint-staged": "^13.0.3",
"mkdirp": "^1.0.4",
"mocha": "^7.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"phantomjs-prebuilt": "^2.1.16",
"prettier": "^2.7.1",
"rollup": "^2.77.2",
"rollup-plugin-commonjs": "^10.1.0",
"sinon": "^17.0.2"
},
"peerDependencies": {
"sinon": ">= 2.x"
},
"lint-staged": {
"*.{js,css,md}": "prettier --check",
"*.js": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}