-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 808 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
{
"name": "arrow-mocha",
"version": "1.0.1",
"description": "Provides your ES6 arrow functions with Mocha test context",
"author": "Sam Kozin <[email protected]>",
"scripts": {
"test": "mocha -C --harmony --require ./test/_hook/babel.js ./test",
"prepublish": "mkdir -p es5 && babel index.js > es5/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/skozin/arrow-mocha.git"
},
"keywords": [
"mocha",
"arrow function",
"arrow",
"es6"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/skozin/arrow-mocha/issues"
},
"homepage": "https://github.com/skozin/arrow-mocha",
"devDependencies": {
"babel": "^4.7.9",
"chai": "^2.2.0",
"mocha": "^2.2.1"
},
"files": [
"index.js",
"es5/index.js"
]
}