-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "vermicelli",
"version": "0.0.5",
"description": "A collection of test helpers to save a few commonly used testing patterns",
"main": "dist/index.js",
"scripts": {
"test": "mocha --compilers js:babel/register --recursive specs && standard",
"prepublish": "rm -rf dist && babel --optional runtime lib --out-dir dist --copy-files",
"postpublish": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mishguruorg/vermicelli"
},
"keywords": [
"mocha chai proxyquire vermicelli"
],
"author": "Mish Guru <dev@mish.guru>",
"bugs": {
"url": "https://github.com/mishguruorg/vermicelli/issues"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.0",
"chai": "^3.2.0",
"istanbul": "^0.3.19",
"mocha": "^2.2.5",
"proxyquire": "^1.4.0",
"sinon": "^1.17.1",
"standard": "^5.1.1"
},
"dependencies": {
"babel-runtime": "^5.8.20",
"ramda": "^0.17.1",
"bluebird": "^2.9.34",
"winston": "^1.0.0"
},
"standard": {
"ignore": [
"dist"
],
"parser": "babel-eslint"
}
}