-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
{
"name": "futils",
"version": "3.1.3",
"description": "Functional programming utility toolkit",
"main": "dist/futils.js",
"module": "src/__export.es6.js",
"scripts": {
"test": "./node_modules/.bin/jasmine-node ./specs --captureExceptions",
"docs": "./node_modules/.bin/jsdoc -c ./conf.json --verbose",
"bundle": "rollup -c"
},
"repository": {
"type": "git",
"url": "https://github.com/urbandrone/futils.git"
},
"keywords": [
"functional programming",
"toolkit",
"monads",
"monoids",
"lenses",
"combinators",
"decorators",
"ADT",
"ES2015",
"ES6"
],
"author": "David Hofmann <[email protected]> (https://github.com/urbandrone/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/urbandrone/futils/issues"
},
"homepage": "https://github.com/urbandrone/futils#readme",
"tonicExampleFilename": "example.js",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015-rollup": "^3.0.0",
"braces": "^2.3.1",
"jasmine-node": "^1.15.0",
"jsdoc": "^3.6.3",
"minami": "^1.1.1",
"rollup": "^0.64.1",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-uglify": "^4.0.0"
},
"dependencies": {}
}