-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "clean-text-utils",
"version": "1.1.17",
"description": "A Swiss Army Knife of text operations. Great for removing smart quotes, non-ASCII characters, and more.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/daviseford/clean-text-utils.git"
},
"bugs": {
"url": "https://github.com/daviseford/clean-text-utils/issues"
},
"homepage": "https://github.com/daviseford/clean-text-utils/#readme",
"scripts": {
"test": "npm run build && mocha dist/test",
"build": "rm -rf dist/ && tsc"
},
"keywords": [
"text",
"npm",
"strip",
"utf8"
],
"author": "Davis E. Ford <davis.e.ford.alt@gmail.com> (https://daviseford.com/blog/)",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.2",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"mocha": "^5.0.5",
"tslint": "^5.9.1",
"typescript": "^2.8.1"
},
"dependencies": {}
}