-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.7 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
{
"name": "csv-types",
"version": "0.3.1",
"description": "CSV Types (csv-types-js) is a JavaScript library to parse CSV strings (comma separated values and text files with fields delimited by a character) and produce a JavaScript AST (abstract syntax tree) with the data. It also supports *types specs*: multiple headers-values (tables) per csv string.",
"main": "src/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha test/mocha.js",
"test-stop": "./node_modules/.bin/mocha --bail test/mocha.js",
"docs": "./node_modules/.bin/jsdoc -c .jsdoc.json",
"inch": "./node_modules/.bin/inchjs list",
"lint": "./node_modules/.bin/eslint src && echo 'OK Lint'",
"coverage": "./node_modules/.bin/nyc ./node_modules/.bin/mocha test/mocha.js",
"coveralls": "npm run coverage; ./node_modules/.bin/nyc report --reporter=text-lcov | coveralls",
"coverage-check": "./node_modules/.bin/nyc --check-coverage true --lines 95 ./node_modules/.bin/mocha test/mocha.js",
"coverage-html": "./node_modules/.bin/nyc --reporter=html ./node_modules/.bin/mocha test/mocha.js"
},
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "https://github.com/Group4Layers/csv-types-js.git"
},
"keywords": [
"CSV",
"csv",
"types",
"flexible",
"table",
"parser",
"reader"
],
"author": {
"name": "nozalr",
"company": "Group4Layers"
},
"license": "MIT",
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^4.10.0",
"inchjs": "^0.4.1",
"jsdoc": "^3.5.5",
"minami": "^1.2.3",
"mocha": "^4.0.1",
"nyc": "^11.2.1"
},
"files": [
"src",
"dist",
"LICENSE.md",
"README.md"
]
}