forked from mourner/hello-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 895 Bytes
/
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
{
"name": "hello-lib",
"version": "1.0.1",
"description": "A boilerplate for my JS projects.",
"main": "index.js",
"browser": "hello.js",
"devDependencies": {
"browserify": "^12.0.1",
"eslint": "^1.9.0",
"eslint-config-mourner": "^1.0.1",
"tap": "^2.2.0"
},
"scripts": {
"pretest": "eslint index.js test/test.js",
"test": "tap test/test.js",
"cov": "tap test/test.js --cov",
"build": "browserify -s hello index.js > hello.js",
"prepublish": "npm run build"
},
"eslintConfig": {
"extends": "mourner"
},
"repository": {
"type": "git",
"url": "git://github.com/mourner/hello-lib.git"
},
"homepage": "https://github.com/mourner/hello-lib",
"bugs": {
"url": "https://github.com/mapbox/hello-lib/issues"
},
"keywords": [
"boilerplate",
"template"
],
"author": "Vladimir Agafonkin",
"license": "ISC"
}