-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
84 lines (84 loc) · 2.09 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "word-table",
"officialName": "word-table",
"version": "1.0.3",
"summary": "word-table is simple browserjs / nodejs library for drawing ascii tables in the terminal / console.",
"description": "word-table is simple browserjs / nodejs library for drawing tables in the terminal/console.",
"author": {
"name": "hustcc",
"url": "http://git.hust.cc/word-table"
},
"license": "MIT",
"keywords": [
"word-table",
"ascii",
"ascii-table",
"table",
"sheet",
"terminal",
"console",
"terminal table",
"console table"
],
"main": "dist/word-table.min.js",
"repository": {
"type": "git",
"url": "https://github.com/hustcc/word-table"
},
"bugs": {
"url": "https://github.com/hustcc/word-table/issues"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"coveralls": "^2.13.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"jest": "^20.0.4",
"webpack": "^2.6.0"
},
"scripts": {
"lint": "eslint src",
"test": "npm run lint && npm run cover",
"dev": "webpack --watch",
"cover": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "webpack && npm run test"
},
"dependencies": {
"word-width": "^1.0.1"
},
"jest": {
"testRegex": "(/__tests__/.*\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**"
],
"moduleDirectories": [
"node_modules",
"src"
],
"transform": {
"^.+\\.js?$": "babel-jest"
}
}
}