-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.26 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
{
"name": "@tdameritrade/recur",
"version": "2.1.3",
"description": "A consistent storage API for different client storage",
"main": "dist/es5/index.js",
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.es5.json && tsc -p tsconfig.es2015.json",
"prebuild": "npm run clean",
"clean": "rm -rf dist",
"docs": "typedoc --out docs --ignoreCompilerErrors src",
"predocs": "npm run clean:docs",
"clean:docs": "rm -rf docs",
"release": "standard-version"
},
"types": "dist/es5/index.d.ts",
"keywords": [
"storage",
"localStorage",
"indexDB",
"database"
],
"author": {
"name": "Steven Sojka",
"url": "https://github.com/steelsojka",
"email": "[email protected]"
},
"repository": "https://github.com/TDAmeritrade/recur.git",
"license": "BSD",
"es2015": "dist/es2015/index.js",
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/lodash": "^4.14.134",
"fake-indexeddb": "^2.1.1",
"jest": "^24.8.0",
"standard-version": "^7.0.0",
"ts-jest": "^24.0.2",
"typedoc": "^0.14.2",
"typescript": "^3.5.2",
"rxjs": "^6.x.x",
"tslib": "^1.10.0"
},
"peerDependencies": {
"rxjs": "^6.x.x",
"tslib": ">1.10.0"
},
"dependencies": {
"lodash": "^4.x.x"
}
}