forked from sallar/stringz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.34 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.34 KB
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
44
45
46
47
48
49
50
51
52
53
{
"name": "stringz",
"version": "0.2.2",
"description": "Zero-dependency unicode-aware string tools",
"main": "dist/index.js",
"types": "./index.d.ts",
"scripts": {
"test": "npm run lint && nyc --require babel-core/register mocha",
"lint": "eslint ./",
"nyc-report": "nyc report --reporter=lcov > coverage.lcov && codecov",
"prepublish": "babel src --out-dir dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sallar/stringz.git"
},
"keywords": [
"string",
"truncate",
"length",
"unicode",
"substr",
"substring",
"emoji",
"pad",
"leftpad",
"rightpad",
"length",
"count"
],
"author": "Sallar Kaboli <sallar.kaboli@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sallar/stringz/issues"
},
"homepage": "https://github.com/sallar/stringz#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"codecov": "^1.0.1",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^2.5.3",
"nyc": "^7.1.0"
},
"dependencies": {}
}