-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.78 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
{
"name": "@aspen.cloud/aspen-sdk",
"version": "0.2.7",
"main": "lib/index.js",
"browser": "lib/index.js",
"author": "Matthew Linkous <[email protected]>",
"license": "Apache-2.0",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/aspen-cloud/aspendb.git"
},
"dependencies": {
"@types/jwt-decode": "^2.2.1",
"@types/nanoid": "^2.1.0",
"@types/pouchdb": "^6.4.0",
"@types/pouchdb-upsert": "^2.2.6",
"@types/sha.js": "^2.4.0",
"client-oauth2": "^4.2.5",
"docuri": "^4.2.2",
"jwt-decode": "^2.2.0",
"nanoid": "^3.0.2",
"pouchdb": "^7.2.1",
"pouchdb-adapter-http": "^7.2.1",
"pouchdb-upsert": "^2.2.0",
"sha.js": "^2.4.11",
"tslib": "^1.11.1"
},
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest",
"build-dev": "NODE_ENV=development rollup -c",
"build": "NODE_ENV=production rollup -c",
"preversion": "npm run test",
"prepack": "npm run test && npm run build",
"doc": "typedoc --options typedoc.json"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.1",
"@rollup/plugin-typescript": "^4.1.1",
"@types/jest": "^25.2.1",
"babel-jest": "^25.2.6",
"jest": "^25.2.7",
"jest-localstorage-mock": "^2.4.0",
"pouchdb-adapter-memory": "^7.2.1",
"rollup": "^2.3.3",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-terser": "^5.3.0",
"typedoc": "^0.17.4",
"typescript": "^3.8.3",
"yarn": "^1.22.4"
},
"jest": {
"setupFiles": [
"jest-localstorage-mock"
]
}
}