forked from josa42/ember-find-related-files
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 781 Bytes
/
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
{
"name": "ember-find-related-files",
"version": "0.4.0",
"description": "",
"main": "./main.js",
"scripts": {
"test": "eslint . && mocha tests/**/*.test.js",
"report-coverage": "nyc mocha --reporter min tests/**/*.test.js > /dev/null && nyc report --reporter=lcov > coverage.lcov && codecov"
},
"engines": {
"node": ">=8"
},
"author": "Josa Gesell <josa@gesell.me>",
"license": "MIT",
"devDependencies": {
"codecov": "~3.5.0",
"eslint": "~6.1.0",
"eslint-config-standard": "~13.0.1",
"eslint-plugin-import": "~2.18.2",
"eslint-plugin-node": "~9.1.0",
"eslint-plugin-promise": "~4.2.1",
"eslint-plugin-standard": "~4.0.0",
"mocha": "~6.2.0",
"nyc": "~14.1.1"
},
"dependencies": {
"glob": "~7.1.4"
}
}