-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 846 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": "write-pad",
"description": "String right pad",
"version": "1.0.1",
"repository": {
"type": "git",
"url": "git://github.com/yjhuoh/right-pad.git"
},
"homepage": "https://github.com/yjhuoh/right-pad",
"main": "index.js",
"types": "index.d.ts",
"dependencies": {
"left-pad": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"mocha": "^2.4.5"
},
"keywords": [
"browser",
"left",
"pad",
"rightpad",
"right",
"string",
"leftpad"
],
"author": {
"name": "Yu-Jay Huoh",
"email": "yjhuoh@gmail.com",
"url": "http://github.com/yjhuoh"
},
"license": "MIT",
"scripts": {
"test": "mocha test/*.spec.js",
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile"
}
}