-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.15 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
{
"name": "nanostores-lit",
"version": "0.1.0",
"description": "Lit integration for Nano Stores, a tiny state manager with many atomic tree-shakable stores",
"keywords": [
"store",
"state",
"state manager",
"lit"
],
"author": "Emil Bonne Kristiansen <emilbonnek@gmail.com",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"test": "echo \"tests not implemented\"",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@web/test-runner": "^0.15.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"lit": "^2.6.0",
"nanostores": "^0.7.1",
"prettier": "2.8.2",
"typescript": "^4.9.4"
}
}