-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
35 lines (35 loc) · 902 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
35
{
"name": "simple-mock",
"version": "0.8.0",
"description": "Super simple stubs and spies with 1-step sandbox restore",
"license": "MIT",
"main": "index.js",
"scripts": {
"npmrc": "printf \"_auth = $NPM_AUTH_TOKEN\nemail = $NPM_EMAIL\n\" > .npmrc",
"test": "npm run test-no-publish && if [ -n \"${TRAVIS_TAG}\" ]; then npm run npmrc && npm publish || 1; fi",
"test-no-publish": "standard && mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/jupiter/simple-mock.git"
},
"keywords": [
"test",
"simplemock",
"simple",
"mock",
"stub",
"spy",
"fake"
],
"author": "Pieter Raubenheimer",
"bugs": {
"url": "https://github.com/jupiter/simple-mock/issues"
},
"homepage": "https://github.com/jupiter/simple-mock",
"devDependencies": {
"mocha": "^2.2.5",
"standard": "^4.0.1"
},
"dependencies": {}
}