-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.23 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.23 KB
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
{
"name": "@wp-headless/fetch",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.7.0",
"@wp-headless/babel-preset": "^0.1.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"codecov": "^3.6.1",
"expect": "^21.0.0",
"husky": "^3.0.9",
"isomorphic-fetch": "^2.2.1",
"jest": "^24.9.0",
"jest-mock": "^21.0.0",
"karma": "^4.4.1",
"karma-browserstack-launcher": "^1.4.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"mocha": "^6.2.2",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.0",
"webpack": "^4.41.2"
},
"scripts": {
"build": "yarn workspaces run build",
"start": "yarn workspaces run start",
"publish": "yarn workspaces run publish --no-git-tag-version",
"prepublish": "yarn test",
"test": "yarn build && yarn test:unit",
"test:unit": "jest --config testing/jest.config.js packages/**",
"test:coverage": "yarn test:unit --coverage",
"test:browsers": "NODE_ENV=test karma start testing/karma.conf.js"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}