This repository has been archived by the owner on Nov 12, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.65 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
{
"name": "@most/stream",
"version": "1.0.0",
"description": "Core stream type",
"main": "dist/stream.js",
"files": [
"dist/stream.js"
],
"scripts": {
"build-dist": "mkdir -p dist && rollup src/index.js | babel --presets es2015 --plugins transform-es2015-modules-umd --module-id '@most/stream' -o dist/stream.js",
"build": "npm run build-dist && uglifyjs dist/stream.js -o dist/stream.min.js",
"prepublish": "npm run build",
"preversion": "npm run build",
"unit-test": "babel-node ./node_modules/.bin/isparta cover _mocha",
"lint": "jsinspect src && jsinspect test && eslint src test",
"test": "npm run lint && npm run unit-test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mostjs/stream.git"
},
"author": "mostjs <[email protected]> (github.com/<mostjs>)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mostjs/stream/issues"
},
"homepage": "https://github.com/mostjs/stream#readme",
"devDependencies": {
"@most/eslint-config-most": "^1.0.2",
"assert": "^1.3.0",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.2",
"babel-plugin-transform-es2015-modules-umd": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"eslint": "^2.6.0",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"isparta": "^4.0.0",
"jsinspect": "^0.8.0",
"mocha": "^2.4.5",
"most": "^1.0.0",
"rollup": "^0.25.7",
"sinon": "^1.17.3",
"uglify-js": "^2.6.2"
},
"peerDependencies": {
"most": "^1.0.0"
},
"dependencies": {
"@most/prelude": "^1.1.0"
}
}