-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 982 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
{
"name": "fullwidth",
"version": "1.2.0",
"description": "Fullwidth text converter.",
"main": "lib/index.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register test/*.js",
"lint": "standard --verbose src/**/*.js test/**/*.js | snazzy",
"clean": "rm -rf lib",
"build": "babel src -d lib --copy-files",
"prepare": "npm run lint && npm test && npm run build",
"postpublish": "npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baygeldin/fullwidth.git"
},
"keywords": [
"fullwidth",
"text",
"unicode",
"japanese"
],
"author": "Alexander Baygeldin",
"license": "MIT",
"bugs": {
"url": "https://github.com/baygeldin/fullwidth/issues"
},
"homepage": "https://github.com/baygeldin/fullwidth#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"mocha": "^2.4.5"
}
}