-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.46 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.46 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
54
55
{
"name": "random-chars-generator",
"version": "0.2.1",
"description": "Random chars generation for different languages",
"license": "MIT",
"repository": "",
"author": "",
"keywords": [
"random",
"chars",
"cjk",
"gbk",
"big5",
"gb2312"
],
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib && rimraf coverage && rimraf .nyc_output && rimraf lib_test",
"prettier": "prettier --write \"{src,test}/**/*.ts\"",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"prepublish": "npm run build",
"prebuild": "npm run clean && npm run prettier && npm run lint && echo Using TypeScript && tsc --version",
"build": "tsc --pretty",
"test": "npm run clean && tsc -p tsconfig.test.json --pretty && nyc --exclude \"**/*-spec.js\" ava \"**/*-spec.js\" --verbose",
"coverage": "nyc report --reporter=lcov --reporter=text --reporter=html",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch"
},
"dependencies": {
"iconv-lite": "^0.4.18"
},
"devDependencies": {
"@types/node": "^7.0.0",
"ava": "^0.20.0",
"coveralls": "^2.0.0",
"nyc": "^10.0.0",
"prettier": "^1.5.2",
"rimraf": "^2.0.0",
"tslint": "^5.0.0",
"tslint-config-prettier": "^1.1.0",
"typescript": "^2.0.0"
},
"engines": {
"node": ">=6.0.0"
},
"ava": {
"require": [
"babel-register"
]
}
}