-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 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
{
"name": "@bartificer/human-join",
"version": "1.1.3",
"description": "A JavaScript utility for joining lists in a human-friendly way.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "./node_modules/rollup/dist/bin/rollup -c",
"test": "./node_modules/.bin/qunit -c humanJoiner:./dist/index.js -d is:./node_modules/is_js _:./node_modules/lodash -t ./test/tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bbusschots/human-join.git"
},
"keywords": [
"JavaScript",
"list",
"join"
],
"author": "Bart Busschots",
"license": "MIT",
"bugs": {
"url": "https://github.com/bbusschots/human-join/issues"
},
"homepage": "https://github.com/bbusschots/human-join#readme",
"dependencies": {
"@rollup/plugin-commonjs": "^11.0.0",
"@rollup/plugin-node-resolve": "^6.0.0",
"is_js": "^0.9.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"node-qunit": "^1.0.0",
"rollup": "^1.27.14"
}
}