-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
39 lines (39 loc) · 881 Bytes
/
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
{
"name": "csv-builder",
"author": "Nick Pisacane <[email protected]>",
"version": "1.0.1",
"description": "Easily encode complex JSON objects to CSV with CsvBuilder's schema-like API",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nickpisacane/CsvBuilder"
},
"keywords": [
"csv",
"csv encoder",
"json to csv",
"object to csv",
"csv stream",
"csv exporter"
],
"dependencies": {
"lodash.get": "^4.4.2",
"lodash.pick": "^4.4.0"
},
"scripts": {
"lint": "standard",
"test": "npm run lint && mocha test/**/*.test.js",
"test:watch": "watch-run -i -p 'lib/**/*.js,test/**/*.js' npm run test"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.5.3",
"standard": "^10.0.3",
"watch-run": "^1.2.5"
},
"standard": {
"ignore": [
"test"
]
}
}