-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.19 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
{
"name": "cnet2ocds",
"version": "0.2.1",
"description": "Convert Compranet data to OCDS",
"main": "index.js",
"preferGlobal": "true",
"bin": {
"c2o": "bin/app.js"
},
"engines" : { "node" : ">=8.11" },
"repository": {
"type": "git",
"url": "git://github.com/kyv/cnet2ocds.git"
},
"scripts": {
"test": "npx mocha test/main.js",
"precommit": "npm run lint",
"lint": "npx eslint '**/*.js'"
},
"author": "PODER",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-preset-env": "^1.6.0",
"eslint": "^4.3.0",
"eslint-config-eslint": "^4.0.0",
"eslint-plugin-chai-friendly": "^0.3.6",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"mocha": "^3.4.2",
"should": "^11.2.1"
},
"dependencies": {
"JSONStream": "^1.3.2",
"company-laundry": "git+https://[email protected]/kyv/lavanderia.git",
"esm": "^3.0.28",
"event-stream": "^3.3.4",
"lodash.camelcase": "^4.3.0",
"lodash.isnull": "^3.0.0",
"lodash.isstring": "^4.0.1",
"lodash.mapvalues": "^4.6.0",
"lodash.omit": "^4.5.0",
"normalize-space": "^1.0.2",
"slug": "^0.9.1"
}
}