-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
47 lines (47 loc) · 1003 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "find-elm-dependencies",
"version": "2.0.4",
"description": "Find elm dependencies",
"main": "index.js",
"scripts": {
"test": "mocha test/*.js",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"directories": {
"test": "tests",
"bin": "bin",
"lib": "src"
},
"bin": {
"find-elm-dependencies": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/noredink/find-elm-dependencies.git"
},
"engines": {
"node": ">=4.0.0"
},
"keywords": [
"elm",
"dependencies",
"node"
],
"author": "Richard Feldman",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/noredink/find-elm-dependencies/issues"
},
"homepage": "https://github.com/noredink/find-elm-dependencies",
"dependencies": {
"firstline": "^1.2.0",
"lodash": "^4.17.19"
},
"devDependencies": {
"chai": "3.5.0",
"mocha": "^8.1.1",
"snyk": "^1.316.1"
},
"snyk": true
}