forked from skenqbx/module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 986 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
{
"name": "module-template",
"version": "1.1.0",
"description": "A template for node/io.js modules",
"keywords": [
"module",
"template"
],
"license": "MIT",
"author": {
"name": "name",
"email": "email"
},
"repository": {
"type": "git",
"url": "git-url"
},
"private": true,
"dependencies": {},
"optionalDependencies": {},
"devDependencies": {
"changelog42": "0.7.0",
"eslint": "1.7.2",
"istanbul": "0.4.0",
"mocha": "2.3.3",
"next-update": "0.9.5"
},
"scripts": {
"lint": "eslint ./",
"test": "npm run lint && istanbul cover _mocha -- ./test",
"update": "next-update -k",
"log": "changelog42 --no-author --commit-url=https://github.com/skenqbx/module-template/commit",
"clean": "rm -rf node_modules/ && rm -rf coverage/ && rm -f npm-debug.log",
"postinstall": "if test -d .git/hooks; then echo '#!/bin/sh\\nnpm test' > .git/hooks/pre-commit && chmod u+x .git/hooks/pre-commit; fi"
}
}