-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
33 lines (33 loc) · 1.08 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
{
"name": "cocooned",
"private": true,
"type": "module",
"browser": true,
"description": "Development dependencies description file. For the real package.json, see ./npm",
"packageManager": "[email protected]",
"scripts": {
"build": "rollup --config dev/rollup.config.js --bundleConfigAsCjs",
"lint": "eslint --no-eslintrc --config dev/eslint.json npm/",
"test": "yarn run jest:esm --config npm/__tests__/jest.config.js --showSeed",
"jest:esm": "NODE_NO_WARNINGS=1 yarn node --experimental-vm-modules $(yarn bin jest)"
},
"dependencies": {
"@cocooned/tests": "link:./npm/__tests__",
"@notus.sh/cocooned": "link:./npm"
},
"devDependencies": {
"@faker-js/faker": "^9.0.3",
"eslint": "^8.25.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-n": "^17.7.0",
"eslint-plugin-promise": "^7.1.0",
"givens": "^1.3.9",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"jquery": "^3.0.0",
"rollup": "^4.22.4"
}
}