This repository has been archived by the owner on Jan 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.24 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@faast/payments-common",
"version": "0.17.0",
"description": "Common modules used by payments libs",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"browser": "dist/index.umd.js",
"types": "dist/lib/index.d.ts",
"esnext": "dist/lib/index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/go-faast/payments-common.git"
},
"keywords": [
"crypto",
"payments",
"common"
],
"author": "Dylan Seago <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/go-faast/payments-common#readme",
"bugs": {
"url": "https://github.com/go-faast/payments-common/issues"
},
"files": [
"dist/",
"src/"
],
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"docs": "bin/docs.sh",
"prebuild": "rimraf dist",
"build": "bin/build.sh",
"start": "rollup -c rollup.config.js -w",
"pretest": "npm run lint",
"test": "jest --runInBand --detectOpenHandles",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"precommit": "lint-staged",
"preversion": "bin/preversion.sh",
"version": "npm run build && git add -Af dist docs",
"postversion": "git push && git push --tags",
"release": "npm publish --access=public"
},
"peerDependencies": {
"io-ts": "^1.8.5",
"@faast/ts-common": ">=0.3.0"
},
"devDependencies": {
"@faast/ts-common": "^0.4.0",
"@faast/ts-config": "^1.3.1",
"@types/jest": "^24.0.11",
"coveralls": "^3.0.2",
"husky": "^2.1.0",
"io-ts": "^1.8.5",
"jest": "^23.6.0",
"jest-config": "^23.6.0",
"lint-staged": "^8.0.0",
"prettier": "^1.14.3",
"rimraf": "^2.6.2",
"rollup": "^0.67.0",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.18.0",
"ts-jest": "^23.10.2",
"ts-lint": "^4.5.1",
"ts-node": "^7.0.1",
"tslint": "^5.16.0",
"typedoc": "^0.14.2",
"typescript": "^3.4.3"
},
"dependencies": {
"bignumber.js": "^9.0.0"
}
}