-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.07 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.07 KB
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": "evtx",
"version": "0.3.3",
"author": "redpelicans",
"license": "MIT",
"description": "Aspect oriented middleware library",
"keywords": [
"aspect",
"middleware"
],
"scripts": {
"lint": "eslint src --color",
"dist": "DEBUG=evtx* babel -o index.js ./src/index.js",
"test": "mocha --require babel-core/register --reporter spec \"./**/__test__/*.js\" ",
"coverage": "nyc yarn test"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"mocha": "^3.2.0",
"nyc": "^10.2.0",
"should": "^11.2.1",
"sinon": "^2.1.0"
},
"nyc": {
"exclude": []
},
"babel": {
"presets": [
[
"latest",
{
"modules": false
}
],
"stage-0"
]
}
}