forked from github/codeql-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 846 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
{
"name": "clean-yaml-object",
"version": "0.1.0",
"description": "Clean up an object prior to serialization",
"license": "MIT",
"repository": "tapjs/clean-yaml-object",
"author": {
"name": "James Talmage",
"email": "james@talmage.io",
"url": "github.com/jamestalmage"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "xo && nyc --cache --reporter=lcov --reporter=text ava",
"prepublish": "npm run snyk-protect",
"snyk-protect": "snyk-protect"
},
"files": [
"index.js"
],
"keywords": [
"serialize",
"clean",
"dedupe",
"circular",
"yaml",
"json",
"error"
],
"dependencies": {
"@snyk/protect": "latest"
},
"devDependencies": {
"ava": "^4.0.0",
"coveralls": "^3.0.0",
"nyc": "^14.0.0",
"xo": "^0.40.3"
},
"snyk": true
}