-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.48 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
{
"name": "mock4js",
"version": "1.0.2",
"description": "",
"main": "index.js",
"scripts": {
"prepublish": "mkdirp dist && browserify src/mock4js.js -s mock4js -o dist/mock4js.js",
"postpublish": "publish-release --assets dist/mock4js.js --notes 'Add release notes here.'",
"test": "npm run test:node && npm run test:browser && npm run test:saucelabs",
"test:node": "mocha test",
"test:watch": "npm run test:node -- --watch",
"test:browser": "karma start",
"test:debug": "karma start karma-debug.conf.js",
"test:saucelabs": "envcheck SAUCE_ACCESS_KEY && karma start karma-saucelabs.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BladeRunnerJS/mock4js.git"
},
"author": "Gerard Moreno-Torres",
"license": "ISC",
"bugs": {
"url": "https://github.com/BladeRunnerJS/mock4js/issues"
},
"homepage": "https://github.com/BladeRunnerJS/mock4js#readme",
"devDependencies": {
"browserify": "^11.0.1",
"core-js": "^1.2.6",
"env-check": "^0.0.1",
"eslint": "^0.24.1",
"expectations": "^0.5.1",
"junit": "^0.9.5",
"karma": "^0.13.6",
"karma-browserify": "^4.2.1",
"karma-chrome-launcher": "^0.2.0",
"karma-cli": "^0.1.0",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-sauce-launcher": "^0.2.14",
"mkdirp": "^0.5.1",
"mocha": "^2.2.5",
"publish-release": "^1.0.2",
"sinon": "^1.15.4"
},
"dependencies": {
"get-global": "0.0.1"
}
}