-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 947 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
{
"name": "is-abbr-of",
"version": "0.1.2",
"description": "A nodejs module for detecting the long form of an abbreviation",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"pretest": "npm run tsc",
"test": "mocha",
"tsc": "tsc",
"tscw": "tsc -w",
"preversion": "npm run tsc",
"postversion": "git push --follow-tags",
"prepublish": "npm run tsc"
},
"engines": {
"node": ">=0.10.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mitica/is-abbr-of.git"
},
"keywords": [
"is-abbr",
"abbreviation",
"abbr-of",
"abbr",
"is-abbr-of"
],
"author": "Dumitru Cantea",
"license": "ISC",
"bugs": {
"url": "https://github.com/Mitica/is-abbr-of/issues"
},
"homepage": "https://github.com/Mitica/is-abbr-of#readme",
"devDependencies": {
"@types/node": "^7.0.5",
"mocha": "^3.2.0",
"typescript": "^2.2.1"
}
}