forked from telosnetwork/telos-keycatjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2.08 KB
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
{
"name": "@telosnetwork/telos-keycatjs",
"version": "0.12.4",
"description": "this compact and efficient client library provides access to Keycat service. See below for a list of supported APIs.",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"scripts": {
"preversion": "npm run build && npm test && npm run format && npm run lint",
"postversion": "git push && git push --tags",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p .",
"test": "jest --passWithNoTests --config jestconfig.json",
"build": "rm -rf dist; npm run build:es2015 && npm run build:esm && npm run build:cjs && npm run build:umd && npm run build:umd:min",
"build:es2015": "tsc --module es2015 --downlevelIteration --target es2015 --outDir dist/es2015 -p .",
"build:esm": "tsc --module es2015 --downlevelIteration --target es5 --outDir dist/esm",
"build:cjs": "tsc --module commonjs --downlevelIteration --target es5 --outDir dist/cjs",
"build:umd": "rollup dist/esm/index.js --format umd --name keycatjs --sourcemap --file dist/umd/keycatjs.development.js",
"build:umd:min": "cd dist/umd && uglifyjs --compress --mangle --comments -o keycatjs.production.js -- keycatjs.development.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EOSDAQ/keycatjs.git"
},
"files": [
"dist/**/*",
"src/**/*"
],
"keywords": [
"wallet",
"blockchain",
"eos",
"ethereum"
],
"author": "hanjaekwon (indegser@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/EOSDAQ/keycatjs/issues"
},
"homepage": "https://github.com/EOSDAQ/keycatjs#readme",
"dependencies": {
"query-string": "^6.5.0"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"jest": "^24.8.0",
"prettier": "^1.9",
"rollup": "^1.24.0",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^4.0.0",
"typescript": "^3.3.3333",
"uglify-js": "^3.6.2"
}
}