Skip to content

Commit f3ab774

Browse files
committed
Update package.json
1 parent c295535 commit f3ab774

File tree

3 files changed

+24
-15
lines changed

3 files changed

+24
-15
lines changed

.eslintrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.nyc_output
2+
coverage
3+
node_modules
4+
5+
npm-debug.log

package.json

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,36 @@
22
"name": "cipher-base",
33
"version": "1.0.2",
44
"description": "abstract base class for crypto-streams",
5-
"main": "index.js",
6-
"scripts": {
7-
"test": "node test.js | tspec"
8-
},
9-
"repository": {
10-
"type": "git",
11-
"url": "git+https://github.com/crypto-browserify/cipher-base.git"
12-
},
135
"keywords": [
146
"cipher",
157
"stream"
168
],
17-
"author": "Calvin Metcalf <[email protected]>",
18-
"license": "MIT",
9+
"homepage": "https://github.com/crypto-browserify/cipher-base#readme",
1910
"bugs": {
2011
"url": "https://github.com/crypto-browserify/cipher-base/issues"
2112
},
22-
"homepage": "https://github.com/crypto-browserify/cipher-base#readme",
13+
"license": "MIT",
14+
"author": "Calvin Metcalf <[email protected]>",
15+
"files": [
16+
"index.js"
17+
],
18+
"main": "index.js",
19+
"repository": {
20+
"type": "git",
21+
"url": "https://github.com/crypto-browserify/cipher-base.git"
22+
},
23+
"scripts": {
24+
"coverage": "nyc node test/*.js",
25+
"lint": "standard",
26+
"test": "npm run lint && npm run unit",
27+
"unit": "node test/*.js"
28+
},
2329
"dependencies": {
2430
"inherits": "^2.0.1"
2531
},
2632
"devDependencies": {
27-
"tap-spec": "^4.1.0",
33+
"nyc": "^6.1.1",
34+
"standard": "^6.0.8",
2835
"tape": "^4.2.0"
2936
}
3037
}

0 commit comments

Comments
 (0)