-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 934 Bytes
/
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
{
"name": "synced-web-settings",
"version": "1.1.0",
"description": "Tiny package to make syncing settings with browser storage easier.",
"keywords": [
"settings",
"web",
"browser",
"localstorage",
"sessionstorage"
],
"author": "frankkulak",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/frankkulak/synced-web-settings.git"
},
"bugs": {
"url": "https://github.com/frankkulak/synced-web-settings/issues"
},
"main": "index.js",
"scripts": {
"clean": "rm -rf ./dst/**",
"build": "npm run clean ; tsc ; node scripts/prepublish.cjs",
"test": "mocha -r ts-node/register \"test/**/*.test.ts\"",
"publish": "npm run build && sh scripts/publish.sh"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"mocha": "^9.2.0",
"ts-node": "^10.5.0",
"typescript": "^4.4.4"
}
}