-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.21 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.21 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
{
"name": "complex-to-plain-table",
"version": "0.1.3",
"description": "Simplify complex tables by splitting merged cells",
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint src/index.js",
"dist": "rimraf -fr dist && mkdir dist",
"copy": "cp src/index.js dist/compexToPlainTable.js",
"uglify": "uglifyjs src/index.js -m -o dist/compexToPlainTable.min.js",
"test": "mocha",
"build": "npm run lint && npm run dist && npm run copy && npm run uglify",
"prepublishOnly": "npm run build",
"cover": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drazenp/complex-to-plain-table.git"
},
"author": "Drazen Pupovac",
"license": "MIT",
"bugs": {
"url": "https://github.com/drazenp/complex-to-plain-table/issues"
},
"homepage": "https://github.com/drazenp/complex-to-plain-table#readme",
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^4.17.0",
"istanbul": "^0.4.5",
"jsdom": "^11.6.2",
"mocha": "^5.0.0",
"rimraf": "^2.6.2",
"uglify-js": "^3.3.10"
}
}