-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "adtstream",
"version": "0.1.0",
"description": "streams based on ADTs and pure FP",
"main": "lib/index.js",
"browser": {
"es6-promise": false,
"./factory/server": false
},
"dependencies": {
"es6-promise": "^2.1.1"
},
"devDependencies": {
"babel": "^5.2.13",
"babelify": "^6.0.2",
"mocha": "^2.2.4",
"uglify-js": "^2.4.23"
},
"scripts": {
"test": "mocha --compilers js:babel/register",
"compile": "babel src --out-dir lib",
"bundle-debug": "browserify src/index.js -t babelify -s adts --outfile bundle/adtstream.js",
"bundle": "uglifyjs bundle/adtstream.js > bundle/adtstream.min.js",
"build": "npm run compile && npm run bundle-debug && npm run bundle"
},
"repository": {
"type": "git",
"url": "https://github.com/yelouafi/adtstream.git"
},
"keywords": [
"javascript",
"streams",
"functional programming",
"promise"
],
"author": "Yassine Elouafi",
"email": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/yelouafi/adtstream/issues"
},
"homepage": "https://github.com/yelouafi/adtstream"
}