-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 790 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 790 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
{
"name": "contractions",
"version": "0.0.7",
"licenses": [
{
"type": "Apache 2.0",
"url": "https://github.com/JamesHight/node-contractions/blob/master/LICENSE"
}
],
"author": "James Hight",
"description": "Convert word contractions such as I'm to I am and don't to do not.",
"keywords": [
"contractions",
"contraction",
"English",
"grammar",
"clipping"
],
"homepage": "https://github.com/JamesHight/node-contractions#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:JamesHight/node-contractions.git"
},
"main": "./lib/contractions.js",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha ./test -R spec"
},
"devDependencies": {
"chai": "^2.0.0",
"mocha": "^2.1.0"
}
}