-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy pathpackage.json
34 lines (34 loc) · 925 Bytes
/
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
{
"name": "lolex",
"description": "Fake JavaScript timers",
"version": "1.5.1",
"homepage": "http://github.com/sinonjs/lolex",
"author": "Christian Johansen",
"repository": {
"type": "git",
"url": "http://github.com/sinonjs/lolex.git"
},
"bugs": {
"mail": "christian@cjohansen.no",
"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"
},
"devDependencies": {
"eslint": "^3.0.1",
"browserify": "^13.0.1",
"mocha": "^2.5.3",
"mochify": "^2.18.0",
"referee": "^1.2.0",
"sinon": "^1.17.4"
},
"main": "./src/lolex-src.js"
}