-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.33 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@atomic-reactor/reactium-sdk-core",
"version": "2.1.3",
"exports": {
".": "./lib/index.js",
"./core": "./lib/core/index.js",
"./browser": "./lib/browser/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Atomic-Reactor/reactium-sdk-core.git"
},
"license": "MIT",
"dependencies": {
"action-sequence": "^1.1.2",
"classnames": "^2.5.1",
"dayjs": "^1.11.10",
"memory-cache": "^0.2.0",
"object-path": "^0.11.8",
"shallow-equals": "^1.0.0",
"underscore": "^1.13.6",
"uuid": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-export-default-from": "^7.24.1",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@jest/globals": "^29.7.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/memory-cache": "^0.2.5",
"@types/node": "^20.12.7",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.24",
"@types/underscore": "^1.11.15",
"@types/uuid": "^9.0.8",
"apidoc": "^0.24.0",
"babel-jest": "^29.7.0",
"chalk": "^5.3.0",
"concurrently": "^8.2.2",
"inquirer": "^9.2.18",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^24.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"semver": "^7.6.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.4"
},
"scripts": {
"build": "tsc",
"docs": "concurrently npm:typedocs npm:apidocs",
"apidocs": "apidoc -i src -o apidocs",
"typedocs": "npx typedoc --out docs src",
"test": "jest --coverage",
"watch": "concurrently npm:watch:*",
"watch:tsc": "tsc --watch --inlineSourceMap --inlineSources",
"watch:test": "jest --coverage --watch",
"pretest": "tsc --inlineSourceMap --inlineSources",
"prepublish": "rm -rf lib && npm run build",
"pub": "rm -rf lib && npm run build && node ./pre-publish.mjs && npm publish",
"tsleft": "find src -type f -name '*.js' | egrep -v '[Dd]oc'"
},
"files": [
"lib"
],
"types": "lib/index.d.ts"
}