1
0
mirror of https://github.com/oceanprotocol-archive/squid-js.git synced 2024-02-02 15:31:51 +01:00

included external typings #79

This commit is contained in:
Pedro Gutiérrez 2019-01-09 15:43:33 +01:00
parent 708c732448
commit b9dfdc5118
3 changed files with 13 additions and 1 deletions

8
package-lock.json generated
View File

@ -211,6 +211,14 @@
"resolved": "https://registry.npmjs.org/@types/node/-/node-10.12.18.tgz",
"integrity": "sha512-fh+pAqt4xRzPfqA6eh3Z2y6fyZavRIumvjhaCL753+TVkGKGhpPeyrJG2JftD0T9q4GF00KjefsQ+PQNDdWQaQ=="
},
"@types/node-fetch": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.1.4.tgz",
"integrity": "sha512-tR1ekaXUGpmzOcDXWU9BW73YfA2/VW1DF1FH+wlJ82BbCSnWTbdX+JkqWQXWKIGsFPnPsYadbXfNgz28g+ccWg==",
"requires": {
"@types/node": "*"
}
},
"@types/shelljs": {
"version": "0.8.1",
"resolved": "https://registry.npmjs.org/@types/shelljs/-/shelljs-0.8.1.tgz",

View File

@ -55,6 +55,7 @@
"dependencies": {
"@oceanprotocol/keeper-contracts": "^0.5.3",
"@oceanprotocol/secret-store-client": "~0.0.14",
"@types/node-fetch": "^2.1.4",
"bignumber.js": "^8.0.1",
"ethereumjs-util": "^6.0.0",
"node-fetch": "^2.3.0",

View File

@ -14,7 +14,10 @@
"preserveConstEnums": true,
"outDir": "./dist/node/",
"rootDir": "./src/",
"sourceMap": true
"sourceMap": true,
"typeRoots": [
"node_modules/@types"
]
},
"include": [
"src/**/*"