forked from sinonjs/fake-timers
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.22 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
{
"name": "lolex",
"description": "Fake JavaScript timers",
"version": "2.2.0",
"homepage": "http://github.com/sinonjs/lolex",
"author": "Christian Johansen",
"repository": {
"type": "git",
"url": "http://github.com/sinonjs/lolex.git"
},
"bugs": {
"mail": "[email protected]",
"url": "http://github.com/sinonjs/lolex/issues"
},
"license": "BSD-3-Clause",
"scripts": {
"lint": "eslint .",
"test-node": "mocha -R dot",
"test-headless": "mochify",
"test-cloud": "mochify --wd",
"test": "npm run lint && npm run test-node && npm run test-headless",
"bundle": "browserify -s lolex -o lolex.js src/lolex-src.js",
"prepublish": "npm run bundle",
"precommit": "run-p lint test-node"
},
"lint-staged": {
"*.js": "eslint"
},
"devDependencies": {
"browserify": "^14.4.0",
"eslint": "^4.2.0",
"eslint-config-sinon": "^1.0.3",
"eslint-plugin-mocha": "^4.8.0",
"husky": "^0.14.3",
"lint-staged": "^4.0.2",
"mocha": "^3.4.2",
"mochify": "^3.3.0",
"npm-run-all": "^4.0.2",
"referee": "^1.2.0",
"sinon": "^2.3.7"
},
"eslintConfig": {
"extends": "eslint-config-sinon"
},
"module": "./lolex.js",
"main": "./src/lolex-src.js"
}