-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
77 lines (77 loc) · 2.23 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "certstream",
"version": "1.1.1",
"description": "certstream is a library for interacting with the CertStream network using JS.",
"main": "./lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"prebuild": "npm run clean",
"build": "npm-run-all --parallel build:*",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack --output-filename certstream.js",
"build:umd.min": "webpack -p --output-filename certstream.min.js",
"prepublish": "in-install || npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"clean": "npm-run-all --parallel clean:*",
"clean:build": "rimraf dist lib",
"clean:coverage": "rimraf .nyc_output coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/CaliDog/certstream-js.git"
},
"keywords": [],
"author": {
"name": "fitblip",
"email": "[email protected]",
"website": "https://calidog.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/CaliDog/certstream-js/issues"
},
"homepage": "https://github.com/CaliDog/certstream-js#readme",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-plugin-__coverage__": "^11.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"commitizen": "^2.8.2",
"cross-env": "^1.0.8",
"cz-conventional-changelog": "^1.1.6",
"eslint": "^2.12.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-jsx-a11y": "^1.2.2",
"eslint-plugin-react": "^5.1.1",
"ghooks": "^1.2.4",
"mocha": "^3.0.0",
"npm-run-all": "^2.1.2",
"nyc": "^6.4.4",
"rimraf": "^2.5.2",
"semantic-release": "^4.3.5",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"webpack": "^1.13.1",
"validate-commit-msg": "^2.6.1"
},
"dependencies": {
"in-publish": "^2.0.0",
"reconnectingwebsocket": "^1.0.0",
"ws": "^3.2.0"
},
"nyc": {
"instrument": false,
"sourceMap": false
},
"browser": {
"./index.js": "./browser.js"
}
}