-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.63 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
{
"name": "ts-preferences",
"version": "2.0.0",
"description": "localStorage-based preference manager for web apps, userscripts etc",
"keywords": [
"preferences",
"settings",
"options",
"type-safe",
"localStorage",
"TypeScript"
],
"author": {
"name": "Simon Alling",
"email": "[email protected]",
"url": "https://simonalling.se"
},
"license": "MIT",
"homepage": "https://github.com/simonalling/ts-preferences",
"repository": {
"type": "git",
"url": "https://github.com/simonalling/ts-preferences"
},
"bugs": {
"url": "https://github.com/simonalling/ts-preferences"
},
"main": "dist/index",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"lint": "tslint --project .",
"test": "jest",
"verify": "npm run build && npm run lint && npm run test",
"build": "npm run clean && tsc -d -p . && npm run rename && tsc --module CommonJS -p .",
"prepublishOnly": "npm run verify",
"clean": "rm -rf dist/*",
"rename": "renamer --force --find \"/\\.js$/\" --replace \".mjs\" \"dist/**\""
},
"sideEffects": false,
"dependencies": {
"ts-storage": "^5.0.1",
"ts-type-guards": "^0.6.1"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"jest": "^24.9.0",
"renamer": "^2.0.1",
"ts-jest": "^24.0.2",
"tslint": "^5.9.1",
"typescript": "^3.6.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}