-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.18 KB
/
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": "emotes",
"version": "1.1.14",
"description": "Module that supports both parsing and creating emotes",
"main": "js/index.js",
"typings": "js/index",
"scripts": {
"build": "tsc -p ./ts",
"publish-patch": "npm version patch && npm publish",
"pretest": "npm run build",
"test": "istanbul test node_modules/mocha/bin/_mocha -- js/spec",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha js/spec",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamesmanning/emotes.git"
},
"keywords": [
"emotes",
"berrytube",
"berrymotes"
],
"author": {
"name": "James Manning",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"coveralls": "^2.11.6",
"istanbul": "^0.4.1",
"mocha": "^2.3.4",
"mocha-lcov-reporter": "^1.0.0",
"should": "^8.0.2",
"tslint": "^5.10.0",
"typescript": "^2.9.2"
},
"bugs": {
"url": "https://github.com/jamesmanning/emotes/issues"
},
"homepage": "https://github.com/jamesmanning/emotes#readme"
}