-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 871 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 871 Bytes
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
{
"name": "package-lock-parser",
"version": "1.0.0",
"description": "Library to more easily parse package-lock.json files",
"type": "module",
"exports": {
"require": "./dist/index.cjs",
"import": "./index.mjs"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/WhiteAutumn/package-lock-parser.git"
},
"scripts": {
"build": "babel index.mjs --out-file dist/index.cjs",
"test": "mocha './{,!(node_modules)/**}/*.spec.js'",
"test:watch": "nodemon --exec 'npm t'"
},
"dependencies": {
"exceptions-with-cause": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/plugin-transform-modules-commonjs": "^7.14.0",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"mocha": "^8.3.2",
"nodemon": "^2.0.7"
}
}