-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.43 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
{
"name": "@hermes-serverless/fs-utils",
"version": "0.0.1",
"description": "",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/**/*"
],
"scripts": {
"test": "jest --logHeapUsage",
"build": "rm -rf build && yarn tsc",
"prepare": "yarn build",
"prepublishOnly": "yarn test && yarn lint",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"format": "prettier --config ./prettier.config.js --write \"src/**/*.ts\" \"src/**/*.js\"",
"preversion": "yarn lint && yarn format",
"version": "git add --all",
"postversion": "git push && git push --tags",
"coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hermes-serverless/fs-utils"
},
"author": "Tiago Nápoli <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/hermes-serverless/fs-utils/issues"
},
"homepage": "https://github.com/hermes-serverless/fs-utils#readme",
"dependencies": {
"@hermes-serverless/custom-promises": "^0.0.1"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^12.6.1",
"coveralls": "^3.0.7",
"jest": "^24.7.1",
"prettier": "^1.17.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3"
}
}