This repository has been archived by the owner on Aug 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
63 lines (63 loc) · 2.06 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
{
"name": "radiks",
"version": "0.2.1",
"description": "Manage models with encryption and decentralized storage",
"main": "lib/index.js",
"author": "Hank Stoever",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-async-to-generator": "^7.1.0",
"@babel/plugin-transform-classes": "^7.1.0",
"@babel/plugin-transform-regenerator": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.11",
"@types/qs": "^6.5.1",
"@types/uuid": "^3.4.4",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"babel-plugin-async-to-promises": "^1.0.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"blockstack": "19.2.1",
"dotenv": "^6.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^21.24.1",
"express": "^4.16.4",
"get-random-values": "^1.2.0",
"jest": "^24.8.0",
"mock-local-storage": "^1.1.7",
"mongodb": "^3.1.8",
"typescript": "^3.3.3333"
},
"dependencies": {
"faker": "^4.1.0",
"qs": "^6.5.2",
"query-string": "^6.2.0",
"uuid": "^3.3.2",
"wolfy87-eventemitter": "^5.2.5"
},
"peerDependencies": {
"blockstack": "^19.2.1"
},
"scripts": {
"build": "rm -rf lib && yarn compile && yarn typescript",
"compile": "babel src -d lib --extensions '.ts,.js'",
"compile-watch": "babel src -d lib --watch --extensions '.ts,.js'",
"test": "jest --verbose=false --ci --runInBand",
"test-watch": "jest --verbose=false --ci --runInBand --watch",
"eslint": "eslint src --ext .ts,.js",
"typescript": "tsc",
"prepublishOnly": "yarn build"
},
"types": "typed"
}