-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.02 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
{
"name": "error-to-message",
"version": "0.1.1",
"description": "All caught errors to UI ready messages",
"main": "dist/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/max8hine/error-to-message.git"
},
"keywords": [
"error",
"message",
"javascript"
],
"author": "Max Ma",
"license": "MIT",
"bugs": {
"url": "https://github.com/max8hine/error-to-message/issues"
},
"homepage": "https://github.com/max8hine/error-to-message#readme",
"scripts": {
"test": "jest",
"test:watch": "npm test -- --watch",
"start": "watch 'npm run build' src",
"build": "babel src -d dist",
"prepublish": "npm run build",
"release": "np"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"jest": "^24.8.0",
"np": "^5.0.1",
"watch": "^1.0.2"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"prettier": "1.17.1",
"save-dev": "2.0.0"
}
}