-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1008 Bytes
/
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
{
"name": "unbox-js",
"version": "1.1.0",
"description": "Avoids the usage of try-catch everywhere, force user to handle error case.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"publishVersion": "npm run test && npm run build && npm publish",
"build": "tsc",
"prod": "node dist/index.js",
"dev": "nodemon src/index.ts",
"test": "jest --color"
},
"devDependencies": {
"@types/node": "^12.12.6",
"@types/jest": "^24.0.23",
"ts-jest": "^24.2.0",
"jest": "^24.9.0",
"tslint": "^5.20.1",
"nodemon": "^2.0.7",
"typescript": "^3.7.2"
},
"author": "dylan-tuna & thomas ozanne <codeoz.pro@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/cendevweb/unbox#readme",
"repository": {
"type": "git",
"url": "https://github.com/cendevweb/unbox.git"
},
"keywords": [
"async",
"await",
"js",
"promise",
"javascript",
"ts",
"typescript"
]
}