-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 1.7 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "anyid",
"version": "1.0.7",
"description": "A simple and flexible API to generate various kinds of string ID / code.",
"keywords": [
"id",
"generator",
"random"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aleung/node-anyid.git"
},
"scripts": {
"test": "scripty",
"ci": "scripty",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"clean": "rm -rf lib build reports *.heapsnapshot",
"build": "scripty",
"testall": "scripty",
"_on_compile_success": "scripty",
"_on_compile_failure": "scripty",
"_copylib": "mkdir -p lib && cp -R build/src/* lib/",
"toc": "doctoc README.md --maxlevel 4 --title '**Table of Contents**'",
"format": "tsfmt -r",
"compile": "tsc --pretty",
"lint": "tslint --force --fix --format verbose --project tsconfig.json"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"runkitExampleFilename": "example.js",
"engines": {
"node": ">=5.0.0"
},
"dependencies": {
"base-x": "^3.0.6",
"lodash": "^4.17.14"
},
"devDependencies": {
"@types/chai": "4.1.7",
"@types/lodash": "4.14.136",
"@types/mocha": "5.2.7",
"@types/node": "12.6.2",
"chai": "*",
"coveralls": "^3.0.5",
"doctoc": "1.4.0",
"mocha": "6.1.4",
"mochawesome": "4.0.1",
"nyc": "14.1.1",
"scripty": "1.9.1",
"source-map-support": "0.5.12",
"tsc-watch": "2.2.1",
"tslint": "5.18.0",
"tslint-consistent-codestyle": "1.15.1",
"tslint-eslint-rules": "5.4.0",
"typescript": "3.5.3",
"typescript-formatter": "7.2.2"
},
"config": {
"type": "lib",
"branch": "master"
},
"scripty": {
"silent": true
}
}