-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.47 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
{
"name": "ltstrg",
"version": "1.0.1",
"description": "Simpler storage for your test experience!",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "rimraf dist && tsc -P tsconfig.build.json",
"lint": "prettier --check src/**/*.ts specs/**/*.ts",
"format": "prettier --write src/**/*.ts specs/**/*.ts",
"test": "npm run lint && npm run test-type && npm run test-coverage",
"test-api": "jest",
"test-type": "tsc --noEmit",
"test-coverage": "jest --coverage",
"codecov": "codecov -f coverage/*.json",
"prepublishOnly": "npm test && npm run build"
},
"keywords": [
"storage",
"localstorage",
"local-storage",
"memorystorage",
"memory-storage",
"mock",
"test"
],
"author": "Junyoung Choi <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/Rokt33r/litestorage",
"repository": {
"type": "git",
"url": "git+https://github.com/Rokt33r/litestorage.git"
},
"bugs": {
"url": "https://github.com/Rokt33r/litestorage/issues"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"codecov": "^3.5.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"ts-jest": "^24.0.2",
"typescript": "^3.6.2"
},
"jest": {
"preset": "ts-jest",
"setupFiles": [
"<rootDir>/specs/setup.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
}
}