-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.03 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
80
81
82
83
84
85
{
"name": "@gold.au/pancake-repo",
"version": "0.0.0",
"private": true,
"scripts": {
"changeset": "changeset",
"pkgs:version": "changeset version",
"pkgs:release": "yarn build && changeset publish",
"test:watch": "jest --watch --coverage",
"test:unit-test": "jest",
"test:end-to-end": "node tests/tester.js",
"test:prettier": "prettier --list-different \"**/*.{js,json,ts,tsx,md}\"",
"test": "yarn test:end-to-end && yarn test:unit-test && yarn test:prettier",
"format": "prettier --write \"**/*.{js,json,ts,tsx,md}\"",
"watch": "onchange packages/*/src/ -- yarn build",
"purge": "git clean -xdf",
"build": "yarn workspaces run build"
},
"engines": {
"node": ">=10",
"npm": ">=6"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@changesets/cli": "^2.17.0",
"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",
"prettier": "^2.4.1",
"replace-in-file": "^3.4.4"
},
"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/designsystemau/pancake.git"
},
"homepage": "https://github.com/designsystemau/pancake",
"bugs": {
"url": "https://github.com/designsystemau/pancake/issues"
},
"author": {
"name": "Design System AU",
"email": "[email protected]",
"url": "https://designsystemau.org/"
},
"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/*"
]
}