-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.57 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
{
"name": "localstorm",
"version": "1.0.0",
"description": "ORM for LocalStorage",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"src"
],
"scripts": {
"start": "tsc --watch",
"build": "rm -rf ./lib && tsc -p ./tsconfig.json",
"test": "jest",
"lint": "eslint \"./src/**/*.ts\" \"./tests/**/*.ts\""
},
"repository": "https://github.com/otiai10/localstorm.git",
"keywords": [
"chrome"
],
"author": "otiai10",
"license": "MIT",
"bugs": {
"url": "https://github.com/otiai10/localstorm/issues"
},
"homepage": "https://github.com/otiai10/localstorm#readme",
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/should": "^13.0.0",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"coffee-script": "^1.12.7",
"eslint": "^7.22.0",
"eslint-config-google": "^0.14.0",
"jest": "^26.6.3",
"jest-cli": "^29.2.2",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "tests/.*-test\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"unmockedModulePathPatterns": [
"<rootDir>/src"
],
"setupFilesAfterEnv": [
"./tests/mock/setup-script.ts"
],
"setupFiles": [
"./tests/mock/chrome.ts"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/index.ts",
"!test"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
}
}