-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "@studio/browser-stream",
"version": "1.0.0",
"description": "Naive stream shim for smaller Browserify bundles",
"scripts": {
"lint": "eslint .",
"test": "mochify && mocha",
"watch": "mochify --watch",
"posttest": "npm run lint",
"preversion": "npm test",
"version": "changes --commits",
"postversion": "git push --follow-tags && npm publish"
},
"main": "./lib/browser-stream",
"browser": {
"stream": "./lib/browser-stream"
},
"keywords": [
"stream",
"browser",
"transform"
],
"author": "Maximilian Antoni <[email protected]>",
"homepage": "https://github.com/javascript-studio/studio-browser-stream",
"eslintConfig": {
"extends": "@studio"
},
"devDependencies": {
"@sinonjs/referee-sinon": "^10.1.0",
"@studio/changes": "^1.5.1",
"@studio/eslint-config": "^1.0.2",
"eslint": "^5.0.1",
"mocha": "^5.2.0",
"mochify": "^9.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/javascript-studio/studio-browser-stream.git"
},
"license": "MIT"
}