This repository has been archived on 2019-08-30. You can view files and clone it, but cannot push or open issues or pull requests.
SecureFileWrapper/package.json

27 lines
670 B
JSON
Raw Normal View History

2018-02-01 15:27:01 +00:00
{
2018-02-01 15:37:12 +00:00
"name": "secure-file-wrapper",
2018-12-23 14:18:30 +00:00
"version": "2.0.0",
"main": "lib/index.js",
2018-02-01 15:27:01 +00:00
"author": "Fabian Stamm <dev@fabianstamm.de>",
"license": "MIT",
2018-12-23 14:18:30 +00:00
"types": "lib/index.d.ts",
2018-02-01 15:27:01 +00:00
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
2018-12-23 14:18:30 +00:00
"prepublish": "tsc",
"test": "mocha lib/test.js"
2018-02-01 15:27:01 +00:00
},
"dependencies": {
2018-12-23 14:18:30 +00:00
"isomorphic-fetch": "^2.2.1"
2018-02-01 15:27:01 +00:00
},
"devDependencies": {
"@types/chai": "^4.1.4",
2018-02-25 11:20:30 +00:00
"@types/isomorphic-fetch": "^0.0.34",
"@types/mocha": "^5.2.2",
2018-12-23 14:18:30 +00:00
"@types/node": "^10.12.18",
"@types/node-fetch": "^2.1.4",
"chai": "^4.1.2",
"mocha": "^5.2.0",
2018-12-23 14:18:30 +00:00
"typescript": "^3.2.2"
2018-02-01 15:27:01 +00:00
}
}