-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.17 KB
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": "jsonifier",
"version": "0.3.8",
"description": "Dynamically generates JSON output from templates",
"main": "dist/jsonifier.js",
"scripts": {
"test": "node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*",
"build": "node_modules/.bin/gulp build"
},
"repository": {
"type": "git",
"url": "https://github.com/blakef/jsonifier"
},
"bugs": {
"url": "https://github.com/blakef/jsonifier/issues"
},
"keywords": [
"json",
"testing"
],
"author": "Blake Friedman <blake.friedman@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.5.2",
"babel-plugin-transform-es2015-modules-umd": "^6.5.0",
"babel-preset-es2015-node5": "^1.1.2",
"coveralls": "^2.11.6",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-concat": "^2.6.0",
"gulp-eslint": "^2.0.0",
"gulp-mocha": "^2.2.0",
"gulp-sourcemaps": "^1.6.0",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"should": "^8.2.2",
"source-map-support": "^0.4.0"
},
"dependencies": {
"lodash": "^4.5.1"
}
}