-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.58 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
{
"name": "woodsman",
"version": "1.0.0-ALPHA.1",
"description": "An Open Source logging API for JavaScript applications of all shapes and sizes",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/haximilian/woodsman.git"
},
"author": "Haximilian <haximilian@gmail.com>",
"main": "build/woodsman.cjs.js",
"scripts": {
"build": "npm run build-amd; npm run build-cjs",
"build-amd": "google-closure-compiler --compilation_level ADVANCED_OPTIMIZATIONS --externs node_modules/haximilian-closure-externs/extern/amd.js --externs extern/*.js --js src/*.js --js src/backends/*.js --js src/loaders/amd.js --isolation_mode iife --language_in ECMASCRIPT6 --language_out ECMASCRIPT3 --js_output_file build/woodsman.amd.js",
"build-cjs": "google-closure-compiler --compilation_level ADVANCED_OPTIMIZATIONS --externs node_modules/haximilian-closure-externs/extern/cjs.js extern/*.js --js src/*.js --js src/backends/*.js --js src/loaders/cjs.js --isolation_mode iife --language_in ECMASCRIPT6 --language_out ECMASCRIPT3 --js_output_file build/woodsman.cjs.js",
"clean": "rm -rv build",
"doc": "jsdoc --configure .jsdoc.json .",
"lint": "eslint --ext .js,.jsx,.jsdoc --fix .",
"test": "mocha --recursive"
},
"runkitExampleFilename": "runkit.js",
"keywords": [
"logging",
"metrics",
"error"
],
"devDependencies": {
"eslint": "^5.16.0",
"google-closure-compiler": "^20180610.0.2",
"haximilian-closure-externs": "^1.2.0",
"jsdoc": "^3.6.2",
"mocha": "^5.0.5",
"mocha-param": "^2.0.0",
"mocha-sinon": "^2.1.0",
"requirejs": "^2.3.6",
"sinon": "^6.3.5"
}
}