-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 760 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 760 Bytes
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
{
"name": "word-count",
"version": "0.3.1",
"description": "Word count in respect of CJK characters.",
"main": "index.cjs",
"module": "index.mjs",
"type": "module",
"types": "index.d.ts",
"files": [
"index.cjs",
"index.mjs",
"index.d.ts"
],
"exports": {
"import": "./index.mjs",
"require": "./index.cjs",
"types": "./index.d.ts"
},
"scripts": {
"test": "mocha test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/lepture/word-count.git"
},
"devDependencies": {
"mocha": "*"
},
"keywords": [
"count",
"word-count"
],
"author": "Hsiaoming Yang <me@lepture.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lepture/word-count/issues"
}
}