forked from cierelabs/json-complete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.87 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
52
53
54
{
"name": "json-complete",
"version": "2.0.0",
"description": "A JSON alternative that retains references, handles circular dependencies, and encodes almost every data type available to standard JavaScript.",
"scripts": {
"test": "./node_modules/gulp/bin/gulp.js test",
"test-browser": "./node_modules/gulp/bin/gulp.js test-browser",
"lint": "node ./node_modules/eslint/bin/eslint.js ./src",
"prod": "./node_modules/gulp/bin/gulp.js prod",
"compression-report": "./node_modules/gulp/bin/gulp.js compression-report"
},
"author": "Dwight House",
"license": "BSL-1.0",
"repository": "cierelabs/json-complete",
"homepage": "https://github.com/cierelabs/json-complete",
"main": "./dist/json_complete.cjs.min.js",
"module": "./dist/json_complete.esm.min.js",
"esnext": "./dist/json_complete.esm.min.js",
"files": [
"dist/*.min.js"
],
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/preset-env": "7.5.5",
"babel-plugin-module-resolver": "3.2.0",
"babel-plugin-transform-esm-to-cjs": "0.0.0",
"babelify": "10.0.0",
"browser-sync": "2.26.7",
"browserify": "16.3.0",
"buffer": "5.2.1",
"del": "5.0.0",
"eslint": "6.1.0",
"gulp": "4.0.2",
"gulp-babel": "8.0.0",
"gulp-brotli": "1.2.2",
"gulp-file": "0.4.0",
"gulp-gzip": "1.4.2",
"gulp-rename": "1.4.0",
"gulp-tape": "1.0.0",
"gulp-terser": "1.2.0",
"gulp-zopfli-green": "3.0.1",
"rollup": "1.17.0",
"rollup-plugin-root-import": "0.2.4",
"tape": "4.11.0",
"vinyl-buffer": "1.0.1",
"vinyl-source-stream": "2.0.0"
},
"nyc": {
"temp-directory": "./node_modules/coverage/.nyc_output",
"exclude": [
"**/tests/**/*.*"
]
}
}