-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.66 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
{
"name": "@pipes/convert",
"version": "0.1.0",
"description": "Convert to & from web streams to other data structures",
"main": "index.js",
"scripts": {
"build": "babel src -d .",
"bundle": "browserify --external @pipes-core index.js > dist/pipes.convert.js",
"flow": "flow",
"docs": "documentation build --config documentation.yml src/index.js -f md > README.md",
"minify": "uglifyjs dist/pipes.convert.js -o dist/pipes.convert.min.js -c",
"dist": "npm run bundle && npm run minify",
"build-all": "npm run docs && npm run build && npm run dist",
"prepare": "npm run build-all",
"prepublishOnly": "npm run build-all",
"test": "flow && mocha --ui qunit --compilers js:babel-register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pipesjs/convert.git"
},
"keywords": [
"streams",
"pipesjs",
"convert"
],
"author": "Diwank Singh <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pipesjs/convert/issues"
},
"homepage": "https://github.com/pipesjs/convert#readme",
"peerDependencies": {
"@pipes/core": "*",
"zen-observable": "*"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-async-to-generator": "^6.5.0",
"babel-polyfill": "^6.6.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.6.0",
"babel-runtime": "^6.6.1",
"browserify": "^13.0.0",
"documentation": "^4.0.0-rc.1",
"flow-bin": "^0.46.0",
"mocha": "^2.4.5",
"uglify-js": "^2.6.2"
},
"dependencies": {
"@pipes/core": "^0.8.3"
}
}