-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
60 lines (60 loc) · 1.44 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
{
"name": "regie",
"version": "3.0.0",
"description": "An observable state management tool for vanilla JS applications based on Proxies",
"main": "dist/index.js",
"type": "module",
"keywords": [
"State management"
],
"author": "Armagan Amcalar <armagan@amcalar.com>",
"license": "MIT",
"dependencies": {
"eventemitter3": "^5.0.1",
"is-primitive": "^3.0.1",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"observable-slim": "0.1.5"
},
"scripts": {
"coverage": "nyc report",
"build": "tsc",
"lint": "eslint . --ext .ts --ignore-path .gitignore",
"lint-fix": "eslint --fix . --ext .ts --ignore-path .gitignore",
"test": "c8 ava --verbose",
"prepublishOnly": "npm run lint && npm run build"
},
"exports": {
"default": "./dist/index.js"
},
"files": [
"dist"
],
"devDependencies": {
"@types/lodash.get": "^4.4.9",
"@types/lodash.isequal": "^4.5.8",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"ava": "^5.3.1",
"c8": "^9.1.0",
"coveralls": "^3.0.2",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"nyc": "^15.1.0",
"tsx": "^4.7.1",
"typescript": "^5.4.3"
},
"ava": {
"workerThreads": false,
"files": [
"test/**"
],
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--import=tsx/esm"
]
}
}