-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.58 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.58 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
46
47
{
"name": "@alfalab/scripts-modules",
"version": "1.8.2",
"main": "./build/index.js",
"module": "./build/esm/index.js",
"typings": "./build/index.d.ts",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/core-ds/arui-scripts.git"
},
"bugs": {
"url": "https://github.com/core-ds/arui-scripts/issues"
},
"homepage": "https://github.com/core-ds/arui-scripts/tree/master/packages/arui-scripts-modules#readme",
"scripts": {
"build:commonjs": "tsc --project tsconfig.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build": "yarn build:commonjs && yarn build:esm",
"test": "jest",
"lint:scripts": "arui-presets-lint scripts",
"format": "arui-presets-lint format",
"format:check": "arui-presets-lint format:check",
"lint": "yarn lint:scripts && yarn format:check",
"lint:fix": "yarn lint:scripts --fix && yarn format",
"audit": "yarn npm audit --severity high --environment production"
},
"peerDependencies": {
"react": ">16.18.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/react": "18.3.24",
"@types/uuid": "^9.0.5",
"jest": "28.1.3",
"jest-environment-jsdom": "^29.6.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"ts-jest": "28.0.8",
"typescript": "6.0.2"
},
"dependencies": {
"abortcontroller-polyfill": "^1.7.5",
"uuid": "^9.0.1"
}
}