-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.42 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.42 KB
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
51
52
53
54
55
56
{
"name": "node-freeipa",
"version": "2.4.2",
"description": "A module to consume Freeipa Server API using promises.",
"license": "MIT",
"repository": "https://github.com/lucasdiedrich/node-freeipa",
"author": {
"name": "Lucas Diedrich",
"email": "lucas.diedrich@gmail.com",
"url": "https://github.com/lucasdiedrich"
},
"engines": {
"node": ">=14.16.0"
},
"files": [
"src"
],
"scripts": {
"lint": "./node_modules/.bin/eslint freeipa.js lib/**",
"prepush": "npm run lint && npm run test:converage",
"test": "./node_modules/.bin/mocha test/bootstrap.spec.js test/**/*.spec.js",
"test:tdd": "npm run test -- --watch",
"test:coverage": "./node_modules/.bin/nyc npm test",
"coveralls": "npm run test:coverage && nyc report --reporter=text-lcov | coveralls"
},
"nyc": {
"functions": 80,
"lines": 80,
"check-coverage": true,
"reporter": [
"text",
"html"
],
"exclude": [
"test/**"
]
},
"main": "./src/freeipa.js",
"keywords": [
"Freeipa IPA IDM API NodeJS"
],
"dependencies": {},
"devDependencies": {
"chai": "^5.2.0",
"coveralls": "3.1.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"mocha": "^11.5.0",
"node-fixtures": "0.0.1",
"nyc": "^17.1.0",
"sinon": "^20.0.0",
"sinon-chai": "^4.0.0",
"sinon-stub-promise": "^4.0.0"
}
}