-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.45 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
{
"name": "gfynonce",
"version": "1.0.2",
"description": "nonce generator in the 'adjective adjective animal' pattern that that Gfycat (and Twitch) uses",
"main": "dist/gfynonce.js",
"module": "dist/gfynonce.es.js",
"browser": "dist/gfynonce.min.js",
"bin": "bin/index.js",
"author": "Burkes <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/Burkes/gfynonce",
"repository": "github:Burkes/gfynonce",
"bugs": {
"url": "https://github.com/Burkes/gfynonce/issues",
"email": "[email protected]"
},
"scripts": {
"lint": "eslint src test bin",
"prebuild": "npm run lint",
"build": "rollup -c",
"pretest": "npm run build",
"test": "mocha",
"prepare": "npm run build"
},
"keywords": [
"nonce",
"adjectives",
"animals",
"generator",
"generation",
"random",
"pattern",
"gfycat",
"twitch",
"identifier",
"unique"
],
"engines": {
"node": ">= 6"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-eslint": "^8.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"babelrc-rollup": "^3.0.0",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"lodash.uniq": "^4.5.0",
"mocha": "^5.1.1",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-uglify": "^3.0.0"
},
"dependencies": {
"minimist": "^1.2.0"
}
}