-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.77 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
68
{
"name": "randimals",
"version": "2.0.3",
"description": "Generate unique animal IDs for your projects",
"author": "vinhvn",
"license": "MIT",
"homepage": "https://github.com/vinhvn/randimals",
"repository": "https://github.com/vinhvn/randimals",
"bugs": "https://github.com/vinhvn/randimals/issues",
"main": "./index.js",
"types": "./lib/types.d.ts",
"bin": {
"randimals": "./bin/cli.js"
},
"scripts": {
"build": "gulp",
"test": "mocha 'tests/**/*.ts' --recursive"
},
"keywords": [
"random",
"randomizer",
"animal",
"animals",
"adjective",
"adjectives",
"noun",
"nouns",
"ID"
],
"devDependencies": {
"@types/browserify": "^12.0.36",
"@types/commander": "^2.12.2",
"@types/gulp": "^4.0.8",
"@types/gulp-concat": "^0.0.32",
"@types/gulp-sourcemaps": "^0.0.34",
"@types/gulp-uglify": "^3.0.6",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.1",
"@types/should": "^13.0.0",
"@types/vinyl-buffer": "^1.0.0",
"@types/vinyl-source-stream": "^0.0.30",
"babel-eslint": "^10.1.0",
"browserify": "^17.0.0",
"eslint": "^7.28.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-uglify": "^3.0.2",
"mocha": "^8.4.0",
"prettier": "^2.3.1",
"should": "^13.2.3",
"ts-node": "^10.0.0",
"tsify": "^5.0.4",
"typescript": "^4.3.2",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"change-case": "^4.1.2",
"commander": "^7.2.0"
}
}