-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.08 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
{
"name": "punctuationize",
"version": "1.0.0",
"description": "punctuationize your text, wipping out all things except punctuations.",
"bin": {
"punctuationize": "bin/punctuationize.js"
},
"main": "index.js",
"scripts": {
"test": "npm run eslint && npm run coverage",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"eslint": "eslint index.js"
},
"keywords": [
"punctuationize",
"punctuation"
],
"repository": "https://github.com/Hacker-YHJ/punctuationize",
"author": "thomas_y",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"chai-things": "^0.2.0",
"coveralls": "^2.11.12",
"eslint": "^3.3.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-mocha": "^4.3.0",
"eslint-plugin-react": "^6.1.0",
"istanbul": "^0.4.4",
"mocha": "^3.0.2"
},
"dependencies": {
"commander": "^2.9.0"
}
}