-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"name": "browserify-module-with-mocha-and-babel",
"version": "1.0.0",
"description": "Basic boilerplate module setup a few Front-End buzzwords",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha ./src/js/modules/test --reporter list --opts ./src/js/modules/test/mocha.opts"
},
"author": "Matt Hobbs",
"license": "ISC",
"dependencies": {
"jquery": "^3.1.1"
},
"browserify-shim": {
"jquery": "global:jQuery"
},
"devDependencies": {
"grunt": "^1.0.1",
"load-grunt-config": "^0.19.2",
"grunt-browser-sync": "^2.1.1",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"jit-grunt": "^0.10.0",
"babel-core": "6.20.0",
"babel-preset-es2015": "6.18.0",
"babelify": "7.3.0",
"browserify": "13.1.1",
"browserify-shim": "3.8.12",
"chai": "3.5.0",
"eslint": "3.12.0",
"grunt-browserify": "5.0.0",
"jsdom": "9.8.3",
"jsdom-global": "2.1.0",
"lodash": "4.17.2",
"mocha": "3.2.0"
},
"babel": {
"presets": [
"es2015"
],
"plugins": []
}
}