-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 2.4 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
{
"name": "@adhawk/feathers",
"version": "1.0.0",
"private": true,
"author": "[email protected]",
"license": "MIT",
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/tslib",
"**/tslib/**"
]
},
"scripts": {
"postinstall": " lerna run prepare",
"build": " lerna run build --concurrency 4",
"test": "jest --silent",
"test:all": "npm run test:cjs && npm run test:umd && npm run test",
"test:watch": "jest --watch",
"test:coverage": "jest --verbose --coverage",
"test:ci": "npm run test:coverage -- --ci --maxWorkers=2 --reporters=default --reporters=jest-junit --silent",
"test:cjs": "npm run build && jest --config ./jest.cjs.config.js",
"test:cjs:ci": "jest --config ./jest.cjs.config.js --ci --maxWorkers=2 --reporters=default --reporters=jest-junit --silent",
"test:umd": "npm run build && jest --config ./jest.umd.config.js",
"test:umd:ci": "jest --config ./jest.umd.config.js --ci --maxWorkers=2 --reporters=default --reporters=jest-junit --silent",
"format": " prettier --config ./config/prettier.config.js --write \"./**/*.{js,jsx,ts*,md,graphql,json}\"",
"deploy": " lerna publish",
"clean": "rm -Rf ./node_modules ./meta && lerna exec -- npm run clean",
"circleci": "/usr/bin/ruby -ryaml -e \"puts YAML.load_file('.circleci/config.yml').dig('workflows', 'verify', 'jobs')\" | xargs -o -L 1 circleci local execute --job",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx "
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.10.0",
"@babel/preset-typescript": "^7.9.0",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/jest": "^26.0.9",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"bundlesize": "0.18.0",
"eslint": "^7.10.0",
"jest": "^26.4.0",
"jest-environment-jsdom": "^26.3.0",
"jest-environment-jsdom-global": "^2.0.4",
"jest-junit": "12.0.0",
"lerna": "3.22.1",
"rollup": "^2.3.2",
"rollup-plugin-invariant": "^0.5.6",
"rollup-plugin-terser": "^7.0.0",
"ts-jest": "^26.2.0",
"tslib": "^2.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.10.0",
"@babel/runtime-corejs3": "^7.8.7"
}
}