-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 2.26 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
{
"private": true,
"version": "0.0.1",
"repository": "https://github.com/domql/domql",
"scripts": {
"postinstall": "npx lerna link --force-local; npx lerna run build; npx lerna run copy:package:cjs",
"build": "npm run build:packages",
"build:watch": "nodemon --exec \"npm run build\" --ignore 'dist/*'",
"build:packages": "lerna run build",
"test:watch": "jest --watch --env=jsdom",
"test:unit": "jest --env=jsdom",
"test:lint": "npx standard \"packages/**/*.js\"",
"test:coverage": "npm run jest --coverage --coverageReporters=text-lcov | coveralls",
"test": "npm run test:unit; npm run test:lint",
"publish:all": "npx lerna publish --force-publish",
"publish:packages": "npm run test; npx lerna publish",
"clean": "rm -rf dist .cache **/dist **/.cache",
"clean:modules": "rm -rf node_modules yarn.lock package-lock.json lerna-debug.log yarn-error.log",
"clean:dist": "lerna exec -- rm -rf dist",
"clean:packages": "lerna exec -- rm -rf dist node_modules yarn.lock yarn-error.log package-lock.json",
"clean:package-modules": "lerna exec -- rm -rf node_modules yarn.lock yarn-error.log package-lock.json",
"clean:all": "npm run clean; npm run clean:modules; npm run clean:packages",
"reinstall": "npm run clean:all; npm i",
"link:all": "npx lerna exec -- npm run unlink; npx lerna exec -- npm run link",
"link:all-force": "npx lerna exec -- npm run unlink; npm run link:all"
},
"devDependencies": {
"@babel/core": "^7.21.5",
"@babel/eslint-parser": "^7.16.3",
"@babel/preset-env": "^7.16.4",
"babel-jest": "^29.2.1",
"esbuild": "^0.17.11",
"eslint": "^8.4.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-node": "^11.1.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jsdom": "^21.0.0",
"lerna": "^8.1.9",
"nodemon": "^2.0.22",
"rimraf": "^5.0.0",
"standard": "^17.0.0"
},
"standard": {
"parser": "@babel/eslint-parser",
"ignore": [
"examples/*.js",
"**/test/*.js",
"*.jsx"
],
"env": [
"jest"
]
},
"workspaces": [
"packages/*",
"packages/*/*",
"plugins/*"
],
"browserslist": "> 0.25%, not dead"
}