This repository has been archived by the owner on Oct 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.82 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
{
"name": "@nearmap/jest-config",
"description": "Base Jest Configuration for JavaScript projects.",
"keywords": [
"jest",
"config",
"nearmap"
],
"version": "0.0.0-semantically-released",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "[email protected]:nearmap/jest-config.git"
},
"scripts": {
"default": "run clean test",
"clean": "rimraf ./build",
"build": "run build:*",
"build:babel": "babel src --out-dir build/pkg --ignore '**/*.test.js'",
"build:files": "cp package.json ./README.md ./LICENSE build/pkg/",
"test": "run lint jest",
"lint": "run lint:*",
"lint:js": "eslint --report-unused-disable-directives --ignore-path .gitignore .",
"lint:md": "remark --no-stdout --use remark-lint *.md",
"jest": "jest --runInBand --no-cache ",
"cd": "run clean build release",
"release": "semantic-release"
},
"bugs": "https://github.com/nearmap/jest-config/issues",
"homepage": "https://github.com/nearmap/jest-config",
"main": "./index.js",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@nearmap/eslint-config-base": "^1.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"jest-cli": "^24.8.0",
"npx-run": "^2.1.2",
"remark-cli": "^6.0.1",
"remark-lint": "^6.0.4",
"remark-preset-lint-recommended": "^3.0.2",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.12"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"resolutions": {
"node-gyp": ">=4.0.0",
"fstream": ">=1.0.12"
}
}