forked from plasma-group/pigi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 854 Bytes
/
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
{
"name": "@pigi/plasma-js",
"version": "0.0.1-alpha.7",
"description": "PG client library",
"main": "build/index.js",
"files": [
"build/**/.js"
],
"scripts": {
"lint": "tslint --format stylish --project .",
"fix": "prettier --config ./.prettierrc.js --write 'index.ts' '{src,test}/**/*.ts'",
"build": "tsc -p ."
},
"keywords": [
"plasma",
"group",
"ethereum",
"client"
],
"author": "Plasma Group",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/plasma-group/pigi.git"
},
"devDependencies": {
"@pigi/prettier-config": "^0.0.2-alpha.2",
"@types/axios": "^0.14.0",
"@types/uuid": "^3.4.4",
"typescript": "^3.3.3333"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"axios": "^0.18.0",
"uuid": "^3.3.2"
}
}