forked from CodeChain-io/codechain-indexer-types-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.08 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
{
"name": "codechain-indexer-types",
"version": "0.11.0",
"description": "CodeChain-indexer-types provides the rich object types of the CodeChain-primitive-js that are indexed by indexer and used in the CodeChain Explorer, the CodeChain Wallet.",
"repository": "https://github.com/CodeChain-io/codechain-es-js",
"dependencies": {
"buffer": "^5.2.1",
"lodash": "^4.17.10"
},
"scripts": {
"lint": "tslint -p . && prettier 'src/**/*.{ts,js,json}' -l",
"fmt": "tslint -p . --fix && prettier 'src/**/*.{ts,js,json}' --write",
"build": "tsc -p .",
"prepublishOnly": "yarn run lint && yarn run build"
},
"keywords": [
"CodeChain"
],
"author": "CodeChain Team <[email protected]>",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"files": [
"lib"
],
"license": "ISC",
"devDependencies": {
"@types/jest": "^23.3.5",
"@types/lodash": "^4.14.116",
"@types/node": "^10.9.4",
"jest": "^23.6.0",
"prettier": "^1.14.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.3"
}
}