forked from Functional-JavaScript/FunctionalES
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 913 Bytes
/
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
{
"name": "functional.es",
"version": "1.0.0",
"description": "ES6 +, Functional Programming, Asynchronous, Concurrent Programming",
"main": "functional.es.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha -R spec --require babel-register test/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Functional-JavaScript/FunctionalES.git"
},
"keywords": [
"es6+",
"functional",
"programming",
"javascript"
],
"author": "[email protected]",
"license": "",
"bugs": {
"url": "https://github.com/Functional-JavaScript/FunctionalES/issues"
},
"homepage": "https://github.com/Functional-JavaScript/FunctionalES#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"mocha": "^5.1.0"
}
}