-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 896 Bytes
/
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
{
"name": "array-to-sentence",
"version": "2.0.0",
"description": "Join all elements of an array and create a human-readable string",
"repository": "shinnn/array-to-sentence",
"scripts": {
"prebuild": "eslint --fix --format=codeframe module.mjs test.js",
"build": "rollup --config=node:module",
"pretest": "npm run-script build",
"test": "nyc --reporter=html --reporter=text node test.js"
},
"license": "ISC",
"files": [
"index.js",
"index.mjs"
],
"module": "index.mjs",
"keywords": [
"to-sentence",
"sentence",
"array",
"join",
"human",
"readable",
"string",
"separator",
"comma",
"and",
"browser",
"client-side"
],
"devDependencies": {
"@shinnn/eslint-config": "^5.4.0",
"eslint": "^4.18.1",
"nyc": "^11.5.0",
"rollup": "^0.56.3",
"rollup-config-module": "^2.0.0",
"tape": "^4.9.0"
},
"eslintConfig": {
"extends": "@shinnn"
}
}