This repository has been archived by the owner on Aug 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
79 lines (79 loc) · 1.8 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
71
72
73
74
75
76
77
78
79
{
"name": "pancake",
"private": true,
"scripts": {
"test:watch": "jest --watch --coverage",
"test:unit-test": "jest",
"test:end-to-end": "node tests/tester.js",
"test": "yarn test:end-to-end && yarn test:unit-test",
"watch": "onchange packages/*/src/ -- yarn build",
"purge": "rimraf packages/*/node_modules | rimraf packages/*/dist | rimraf packages/*/lib | rimraf node_modules",
"build": "yarn workspaces run build"
},
"engines": {
"node": ">=10",
"npm": ">=6"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"copy-dir": "^0.4.0",
"del": "^4.0.0",
"dirsum": "^0.1.1",
"jest-cli": "^24.5.0",
"npm-run-all": "^4.1.5",
"onchange": "^5.2.0",
"replace-in-file": "^3.4.4",
"rimraf": "^2.6.3"
},
"jest": {
"testEnvironment": "node",
"testRegex": "\\.spec.js$",
"collectCoverageFrom": [
"packages/*/src/*.js"
],
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/govau/pancake.git"
},
"homepage": "https://github.com/govau/pancake",
"bugs": {
"url": "https://github.com/govau/pancake/issues",
"email": "[email protected]"
},
"author": {
"name": "Commonwealth of Australia, DTA",
"email": "[email protected]",
"url": "https://www.dta.gov.au/"
},
"contributors": [
{
"name": "Dominik Wilkowski",
"email": "[email protected]",
"url": "https://dominik-wilkowski.com/"
},
{
"name": "Simon Schwartz",
"email": "[email protected]",
"url": "https://simonschwartz.github.io/"
},
{
"name": "Adam Zerella",
"email": "[email protected]",
"url": "https://adamzerella.com/"
}
],
"license": "MIT",
"workspaces": [
"packages/*"
]
}