-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
70 lines (70 loc) · 1.86 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": "mocked-env",
"description": "Easy way to mock process.env during BDD testing",
"version": "0.0.0-development",
"author": "Gleb Bahmutov <[email protected]>",
"bugs": "https://github.com/bahmutov/mocked-env/issues",
"engines": {
"node": ">=6"
},
"files": [
"src/*.js",
"src/index.d.ts",
"!src/*-spec.js"
],
"homepage": "https://github.com/bahmutov/mocked-env#readme",
"keywords": [
"environment",
"mock",
"test",
"utility"
],
"license": "MIT",
"main": "src/",
"private": false,
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/mocked-env.git"
},
"scripts": {
"ban": "ban",
"deps": "deps-ok && dependency-check --no-dev .",
"issues": "git-issues",
"license": "license-checker --production --onlyunknown --csv",
"lint": "standard --verbose --fix src/*.js",
"prelint": "npm run pretty",
"pretest": "npm run lint",
"posttest": "npm run warn-only",
"pretty": "prettier-standard 'src/*.js'",
"size": "npm pack --dry",
"test": "npm run unit",
"unit": "mocha src/*-spec.js",
"unused-deps": "dependency-check --unused --no-dev .",
"stop-only": "stop-only -f src",
"warn-only": "stop-only -f src --warn",
"semantic-release": "semantic-release"
},
"types": "src/index.d.ts",
"devDependencies": {
"ban-sensitive-files": "1.9.16",
"dependency-check": "4.1.0",
"deps-ok": "1.4.1",
"git-issues": "1.3.1",
"license-checker": "20.2.0",
"mocha": "7.2.0",
"prettier-standard": "9.1.1",
"standard": "11.0.1",
"stop-only": "3.1.2",
"semantic-release": "17.4.7",
"travis-deploy-once": "5.0.11"
},
"dependencies": {
"check-more-types": "2.24.0",
"debug": "4.3.3",
"lazy-ass": "1.6.0",
"ramda": "0.27.1"
}
}