-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.17 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
50
51
{
"name": "respondent",
"version": "1.1.2",
"description": "A package which allows for modular configuration loading from a specified directory",
"main": "./build/respondent.js",
"files": [
"build",
"src",
"test"
],
"scripts": {
"build": "gulp build",
"test": "mocha ./test/main.js --compilers js:babel-core/register"
},
"author": "Kieron Wiltshire",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kieronwiltshire/node-respondent.git"
},
"bugs": {
"url": "https://github.com/kieronwiltshire/node-respondent/issues"
},
"homepage": "https://github.com/kieronwiltshire/node-respondent#readme",
"dependencies": {
"debug": "^2.6.8",
"rfr": "^1.2.3"
},
"bundledDependencies": [
"rfr"
],
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.23.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.24.1",
"fs-extra": "^2.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"mocha": "^3.2.0"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"add-module-exports"
]
}
}