-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
50 lines (50 loc) · 1.25 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
{
"name": "emailjs-imap-handler",
"version": "3.0.4",
"homepage": "https://github.com/emailjs/emailjs-imap-handler",
"author": "Andris Reinman <[email protected]>",
"description": "Parse and compile IMAP commands",
"keywords": [
"IMAP",
"compiler"
],
"main": "./dist/handler",
"license": "MIT",
"scripts": {
"build": "./scripts/build.sh",
"lint": "$(npm bin)/standard",
"preversion": "npm run build",
"test": "npm run lint && npm run unit",
"unit": "$(npm bin)/mocha './src/*-unit.js' --reporter spec --require babel-register testutils.js",
"test-watch": "$(npm bin)/mocha './src/*-unit.js' --reporter spec --require babel-register testutils.js --watch"
},
"repository": {
"type": "git",
"url": "git://github.com/emailjs/emailjs-imap-handler.git"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"nodemon": "^1.19.1",
"pre-commit": "^1.2.2",
"standard": "^12.0.1"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"beforeEach",
"afterEach",
"after",
"expect"
],
"ignore": [
"dist"
]
}
}