-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.4 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.4 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@sensorfactdev/ellipsisify",
"version": "1.0.0",
"description": "Add ellipses to strings in JavaScript",
"keywords": [
"ellipsis",
"ellipses",
"omission",
"falling short"
],
"scripts": {
"test": "jest --coverage",
"build": "babel ./src/index.js --out-file ./lib/index.js --presets @babel/preset-env",
"docs": "jsdoc2md ./lib/index.js > API.md",
"test-travis": "yarn test && cat ./coverage/lcov.info | coveralls"
},
"main": "lib/index.js",
"repository": "git@github.com:Sensorfactdev/ellipsisify.git",
"author": "Ramon Gebben <ramon@sensorfact.nl>",
"license": "MIT",
"private": false,
"jest": {
"collectCoverageFrom": [
"lib/**/*.js"
],
"reporters": [
"default",
"jest-junit"
],
"testRegex": "./test/.*.js$",
"testPathIgnorePatterns": [
"./test/.*.fixtures.js$"
]
},
"jest-junit": {
"suiteName": "ellipsisify",
"output": "./reports/junit.xml"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"coveralls": "^3.0.1",
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0",
"jest-junit": "^7.0.0",
"jsdoc-to-markdown": "^5.0.0"
}
}