-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.64 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
56
{
"name": "flextablejs",
"version": "0.3.0",
"description": "FlexTable (flextablejs) is a JavaScript library that provides a class with a simple API to work with tables (headers, rows, columns, sort, format) facilitating the analysis and data manipulation.",
"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/flextable.git"
},
"keywords": [
"FlexTable",
"flexible",
"table",
"AST",
"CSV",
"csv",
"data",
"analysis",
"manipulation"
],
"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"
]
}