Skip to content

Commit

Permalink
Merge pull request #11 from snyk/fix/source-map-support
Browse files Browse the repository at this point in the history
Fix/source map support
  • Loading branch information
miiila authored Aug 10, 2018
2 parents ea7639e + eeb680c commit a916cff
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
13 changes: 5 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "snyk-nodejs-lockfile-parser",
"description": "Generate a dep tree given a lockfile",
"main": "dist/lib/index.js",
"main": "dist/index.js",
"bin": {
"parse-nodejs-lockfile": "./bin/index.js"
},
Expand All @@ -14,22 +14,25 @@
"prepare": "npm run build",
"semantic-release": "semantic-release"
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/snyk/nodejs-lockfile-parser.git"
},
"author": "snyk.io",
"license": "Apache-2.0",
"engines": { "node" : ">=4" },
"files": ["bin", "dist"],
"homepage": "https://github.com/snyk/nodejs-lockfile-parser#readme",
"dependencies": {
"lodash": "4.17.10",
"path": "0.12.7"
"path": "0.12.7",
"source-map-support": "^0.5.7"
},
"devDependencies": {
"@types/node": "10.5.5",
"@types/sinon": "5.0.1",
"sinon": "6.1.4",
"source-map-support": "^0.5.6",
"tap": "github:snyk/node-tap#alternative-runtimes",
"ts-node": "7.0.0",
"tslint": "5.11.0",
Expand Down
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,9 @@
],
"module": "commonjs",
"sourceMap": true,
"allowJs": true,
"declaration": true,
},
"include": [
"./lib/**/*",
"./newrelic.ts"
]
}

0 comments on commit a916cff

Please sign in to comment.