-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "random-animal-name",
"version": "0.1.1",
"description": "Heck simple! A random animal name generator",
"main": "src/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "mocha tests/index.spec.js",
"start": "node src/index.js",
"bundle": "browserify --standalone randomAnimal src/index.js -o dist/random-animal.js",
"prebuild": "npm run bundle",
"build": "terser --compress -o dist/random-animal.min.js -- dist/random-animal.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poush/random-animal.git"
},
"keywords": [
"random",
"animal",
"name",
"google",
"docs"
],
"author": "Piyush Agrawal <me@ipiyush.com> (http://ipiyush.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/poush/random-animal/issues"
},
"homepage": "https://github.com/poush/random-animal#readme",
"devDependencies": {
"browserify": "^16.5.1",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"terser": "^4.6.11",
"uglify-js": "^3.9.0"
}
}