-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
49
{
"name": "caffe-mocha",
"version": "0.1.6",
"description": "A semi-opinionated wrapper for the mocha test suite.",
"main": "dist/caffe-mocha.js",
"jsnext:main": "dist/caffe-mocha.mjs",
"scripts": {
"prebuild": "eslint lib test",
"build": "rollup -c",
"watch": "rollup -c -w",
"pretest": "npm run build",
"test": "mocha",
"prepublish": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taylorzane/caffe-mocha.git"
},
"keywords": [
"mocha"
],
"author": "Taylor Zane Glaeser",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/taylorzane/caffe-mocha/issues"
},
"homepage": "https://github.com/taylorzane/caffe-mocha#readme",
"devDependencies": {
"babel-eslint": "^7.1.0",
"babel-plugin-external-helpers": "^6.18.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"babel-register": "^6.18.0",
"babelrc-rollup": "^3.0.0",
"eslint": "^3.8.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.1",
"mocha": "^3.1.2",
"rollup": "^0.36.3",
"rollup-plugin-babel": "^2.6.1"
},
"dependencies": {
"chai": "^3.5.0",
"lodash": "^4.16.4",
"safe-eval": "^0.3.0"
}
}