This repository has been archived by the owner on Jul 17, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 2.25 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
{
"name": "designpatternsjs",
"version": "0.1.0",
"description": "Design Patterns in JS",
"main": "index.js",
"scripts": {
"linux-mocha": "./node_modules/.bin/mocha --require @babel/register -R spec --recursive",
"linux-test": "./node_modules/.bin/nyc --reporter=html npm run linux-mocha",
"linux-build-jsdoc": "./node_modules/.bin/jsdoc -c .jsdoc.json src/es5/ -r --readme README.md",
"linux-build-esdoc": "./node_modules/.bin/esdoc",
"linux-build-docs": "npm run linux-build-jsdoc && npm run linux-build-esdoc",
"linux-build": "npm run linux-build-docs && npm run linux-test",
"win-mocha": "node node_modules/mocha/bin/mocha --require @babel/register -R spec --recursive",
"win-test": "node node_modules/nyc/bin/nyc.js --reporter=html npm run win-mocha",
"win-build-jsdoc": "node node_modules/jsdoc/jsdoc.js -c .jsdoc.json src/es5/ -r --readme README.md",
"win-build-esdoc": "node node_modules/esdoc/out/src/ESDocCLI.js",
"win-build-docs": "npm run win-build-jsdoc && npm run win-build-esdoc",
"win-build": "npm run win-build-docs && npm run win-test",
"mocha": "npm run linux-mocha || npm run win-mocha",
"test": "npm run linux-test || npm run win-test",
"build-jsdoc": "npm run linux-build-jsdoc || npm run win-build-jsdoc",
"build-esdoc": "npm run linux-build-esdoc || npm run win-build-esdoc",
"build-docs": "npm run build-jsdoc && npm run build-esdoc",
"build": "npm run build-docs && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LXSMNSYC/DesignPatternsJS.git"
},
"author": "LXSMNSYC (alexis.munsayac@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/LXSMNSYC/DesignPatternsJS/issues"
},
"homepage": "https://github.com/LXSMNSYC/DesignPatternsJS#readme",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/register": "^7.0.0",
"esdoc": "^1.1.0",
"esdoc-integrate-test-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.15.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"docdash": "^1.0.3",
"jsdoc": "^3.5.5",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"rollup": "^1.6.0",
"terser": "^3.16.1"
}
}