Skip to content

Commit 0280284

Browse files
committed
FirstRelease: add .npmignore file and some fields in package.json
1 parent 15179eb commit 0280284

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.npmignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.travis.yml
2+
.npmignore

package.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
{
22
"name": "js-reporters",
33
"version": "1.0.0",
4+
"description": "common reporter interface for javascript testing frameworks",
5+
"main": "dist/js-reporters.js",
6+
"license": "MIT",
7+
"repository": {
8+
"type": "git",
9+
"url": "git+https://github.com/js-reporters/js-reporters.git"
10+
},
411
"scripts": {
512
"build": "rollup -c",
13+
"prepublish": "npm run build",
614
"pretest": "npm run build",
715
"test": "standard && node test/test.js && npm run test-integration && npm run test-unit",
816
"test-unit": "mocha --recursive test/unit/",

0 commit comments

Comments
 (0)