-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 KB
/
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
48
49
50
{
"name": "removeNPMAbsolutePaths",
"version": "3.0.1",
"description": "Remove the fields containing local aboslute paths created by NPM",
"keywords": [
"npm",
"modules"
],
"main": "src/removeNPMAbsolutePaths.js",
"scripts": {
"lint": "eslint bin/removeNPMAbsolutePaths src test --ignore-pattern 'test/data/malformed/module/'",
"test": "mocha test",
"test-with-coverage": "nyc --reporter=text --reporter=lcov mocha test"
},
"author": "Juanjo Diaz <juanjo.diazmo@gmail.com>",
"repository": {
"type": "git",
"url": "git://github.com/juanjoDiaz/removeNPMAbsolutePaths"
},
"bugs": {
"url": "https://github.com/removeNPMAbsolutePaths/issues",
"email": "juanjo.diazmo@gmail.com"
},
"license": "MIT",
"preferGlobal": true,
"bin": {
"removeNPMAbsolutePaths": "bin/removeNPMAbsolutePaths"
},
"files": [
"LICENSE",
"README.md",
"bin/",
"src/"
],
"devDependencies": {
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"mocha": "^9.2.1",
"nyc": "^15.1.0",
"sinon": "^13.0.1",
"sinon-chai": "^3.7.0"
},
"engines": {
"node": ">=4.0.0"
}
}