-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
63 lines (63 loc) · 1.47 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "node-tnef",
"version": "1.4.0",
"description": "TNEF Parser using NodeJS",
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
},
"main": "dist/commands/parse.js",
"bin": {
"node-tnef": "dist/bin/node-tnef.js"
},
"scripts": {
"prebuild": "npm run clean",
"build": "babel src --out-dir dist",
"clean": "rimraf dist",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gatewayapps/node-tnef.git"
},
"keywords": [
"tnef",
"node",
"parser",
"email"
],
"author": "John Murphy <[email protected]> (http://www.gatewayapps.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/gatewayapps/node-tnef/issues"
},
"homepage": "https://github.com/gatewayapps/node-tnef#readme",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-preset-env": "^1.7.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"rimraf": "^3.0.2"
},
"dependencies": {
"bunyan": "^1.8.12",
"convert-string": "^0.1.0",
"yargs": "^15.3.1"
}
}