-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.16 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
{
"name": "mocha-yaml-loader",
"version": "1.0.3",
"main": "lib/mocha-yaml-loader.js",
"repository": "https://github.com/strothj/mocha-yaml-loader.git",
"author": "strothj <[email protected]>",
"license": "MIT",
"description": "Loads yaml files sourced by files being tested by mocha.",
"files": [
"lib/*.js"
],
"keywords": [
"babel",
"mocha",
"yaml",
"yml"
],
"bugs": {
"url": "https://github.com/strothj/mocha-yaml-loader/issues"
},
"contributors": [
{
"name": "strothj",
"email": "[email protected]",
"url": "https://jasons.io"
}
],
"homepage": "https://github.com/strothj/mocha-yaml-loader",
"scripts": {
"build": "babel mocha-yaml-loader.js -d lib",
"test": "eslint mocha-yaml-loader.js && mocha",
"prepublish": "npm run build"
},
"engines": {
"node": ">=6"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-preset-env": "^1.2.2",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0"
},
"dependencies": {
"js-yaml": "^3.8.2"
}
}