This repository has been archived by the owner on May 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
66 lines (66 loc) · 1.73 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": "@cerner/jest-config-terra",
"version": "3.0.0",
"description": "A base jest config for the terra application framework.",
"author": "Cerner Corporation",
"repository": {
"type": "git",
"url": "git+https://github.com/cerner/terra-toolkit.git",
"directory": "packages/jest-config-terra"
},
"bugs": {
"url": "https://github.com/cerner/terra-toolkit/issues"
},
"homepage": "https://github.com/cerner/terra-toolkit",
"license": "Apache-2.0",
"keywords": [
"Cerner",
"jest",
"jest-config",
"Terra"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": "14",
"npm": "6 || 9"
},
"main": "jest.config.js",
"files": [
"jest.config.js",
"lib",
"CHANGELOG.md",
"NOTICE",
"LICENSE"
],
"peerDependencies": {
"jest": "29"
},
"dependencies": {
"@cerner/terra-cli": "^1.12.0",
"@jest/reporters": "27",
"babel-jest": "29",
"identity-obj-proxy": "3",
"jest-environment-jsdom": "29",
"jest-jasmine2": "29",
"jest-mock": "29",
"strip-ansi": "6"
},
"devDependencies": {
"@babel/cli": "7",
"@babel/core": "7",
"@cerner/eslint-config-terra": "^5.6.0"
},
"scripts": {
"clean": "npm run clean:node_modules && npm run clean:lib",
"clean:install": "npm run clean && time npm install",
"clean:lib": "rm -rf lib",
"clean:node_modules": "echo 'removing ./node_modules' && rm -rf node_modules && echo 'removed ./node_modules'",
"compile": "babel src --out-dir lib --copy-files --ignore src",
"lint": "eslint --ext .js,.jsx --ignore-path ../../.eslintignore .",
"lint:js:fix": "eslint --ext .js,.jsx . --fix",
"jest": "jest --config ./jest.local.config.js",
"test": "npm run jest"
}
}