-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
55 lines (55 loc) · 1.09 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
51
52
53
54
55
{
"name": "csv2ldif",
"version": "0.2.0",
"author": "Nordes Menard-lmaarre",
"license": "MIT",
"description": "Generate the ldif from excel",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Nordes/Csv2Ldif.git"
},
"keywords": [
"ldif",
"OpenLdap",
"converter"
],
"scripts": {
"build": "rimraf lib && tsc -p ./",
"watch": "rimraf lib && tsc -p ./ -w",
"ts-typings": "tsc --declaration ./src/index.ts",
"test": "nyc mocha test/*.spec.ts"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"lcov",
"text"
],
"all": true
},
"dependencies": {
"csvtojson": "^1.1.9",
"yargs": "^11.0.0"
},
"devDependencies": {
"@types/csvtojson": "^1.1.5",
"@types/mocha": "^2.2.48",
"@types/yargs": "^10.0.1",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"rimraf": "^2.6.2",
"ts-node": "^4.1.0",
"tslint-config-airbnb": "^5.5.0",
"typescript": "^2.7.1"
}
}