-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.97 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
{
"name": "universal-stores",
"camelCaseName": "universalStores",
"description": "State management made simple",
"version": "2.4.3",
"type": "module",
"types": "dist/index.d.ts",
"main": "dist/index.cjs",
"module": "dist/index.es.js",
"author": "Carlo Dell'Acqua",
"license": "MIT",
"keywords": [
"store",
"state",
"reactive"
],
"repository": {
"url": "git+https://github.com/cdellacqua/stores.js"
},
"bugs": {
"url": "https://github.com/cdellacqua/stores.js/issues"
},
"homepage": "https://github.com/cdellacqua/stores.js",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"scripts": {
"coverage": "c8 npm run test",
"test": "cross-env NODE_ENV=test mocha 'tests/**/*.ts'",
"dev:browser": "vite",
"dev:node": "nodemon",
"build": "vite build && tsc --project ./tsconfig.declarations.json",
"doc": "rimraf docs && typedoc --gitRevision main --readme none --plugin typedoc-plugin-markdown src/lib/index.ts",
"prepack": "npm run lint && npm run build && npm test && npm run doc",
"lint": "eslint --max-warnings 0 .",
"lint:fix": "eslint --fix .",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"setup": "node --unhandled-rejections=strict setup.js"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.51.0",
"c8": "^7.11.3",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.3",
"nodemon": "^2.0.15",
"prettier": "^2.5.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typedoc": "^0.22.17",
"typedoc-plugin-markdown": "^3.12.1",
"typescript": "^4.3.2",
"vite": "^2.6.4"
},
"dependencies": {
"@cdellacqua/signals": "^5.0.4"
}
}