-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.44 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
{
"name": "stream-js",
"private": false,
"version": "0.5.1",
"scripts": {
"docs": "jsdoc2md src/*.js > docs/api.md",
"lint": "jshint src tests",
"test-dev": "karma start",
"test": "karma start --single-run",
"build": "browserify src/stream.js > dist/stream.js",
"build:min": "browserify src/stream.js | uglifyjs -mc > dist/stream.min.js"
},
"devDependencies": {
"browserify": "^13.1.1",
"browserify-istanbul": "^2.0.0",
"jasmine-core": "^2.5.2",
"jscs": "^3.0.7",
"jsdoc-to-markdown": "^1.3.9",
"jshint": "^2.9.4",
"karma": "^0.13.22",
"karma-browserify": "^5.1.0",
"karma-coverage": "^1.1.1",
"karma-htmlfile-reporter": "^0.3.4",
"karma-jasmine": "^1.1.0",
"karma-jshint-preprocessor": "0.0.6",
"karma-phantomjs-launcher": "^1.0.2",
"karma-spec-reporter": "0.0.26",
"karma-threshold-reporter": "^0.1.15",
"phantomjs-prebuilt": "^2.1.14",
"sinon": "^1.17.6",
"uglifyjs": "^2.4.10",
"watchify": "^3.8.0"
},
"description": "Implementation of the functional programming streams concept in JS.",
"main": "stream.js",
"repository": {
"type": "git",
"url": "git+https://github.com/abdulapopoola/Stream.git"
},
"keywords": [
"Stream",
"JavaScript"
],
"author": "abdulapopoola",
"license": "MIT",
"bugs": {
"url": "https://github.com/abdulapopoola/Stream/issues"
},
"homepage": "https://github.com/abdulapopoola/Stream#readme"
}