forked from adaltas/node-csv-stringify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.43 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
{
"version": "4.3.1",
"name": "csv-stringify",
"description": "CSV stringifier implementing the Node.js `stream.Transform` API",
"keywords": [
"csv",
"stringify",
"stringifier"
],
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "http://www.github.com/adaltas/node-csv-stringify"
},
"homepage": "https://csv.js.org/stringify/",
"dependencies": {
"lodash.get": "~4.4.2"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"coffeescript": "~2.3.1",
"csv-generate": "~2.1.0",
"mocha": "~5.2.0",
"should": "~13.2.3"
},
"optionalDependencies": {},
"main": "./lib",
"scripts": {
"preversion": "rm -rf lib/*.js && npm test && grep '## Trunk' CHANGELOG.md",
"version": "version=`grep '^ \"version\": ' package.json | sed 's/.*\"\\([0-9\\.]*\\)\".*/\\1/'` && sed -i \"s/## Trunk/## Version $version/\" CHANGELOG.md && git add CHANGELOG.md",
"postversion": "git push && git push --tags && npm publish",
"patch": "npm version patch -m 'Bump to version %s'",
"minor": "npm version minor -m 'Bump to version %s'",
"major": "npm version major -m 'Bump to version %s'",
"coffee": "coffee -b -o lib src && cd lib && babel *.js -d es5 && cd ..",
"pretest": "coffee -b -o lib src && cd lib && babel *.js -d es5 && cd ..",
"test": "mocha test/**/*.coffee"
},
"types": "./lib/index.d.ts"
}