forked from fbeline/design-patterns-JS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.31 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
{
"name": "gof-js",
"version": "1.0.0",
"description": "Design patterns implemented in javascript",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"build-docs": "node ./scripts/build-docs.js",
"format": "node ./scripts/format.js",
"test": "mocha test --compilers js:babel-core/register",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- 'test/**/*.js' --compilers js:babel-core/register",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"build": "npm run test; npm run format; npm run build-docs"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"coveralls": "^2.11.16",
"fs-extra-promise": "^0.4.1",
"glob": "^7.1.3",
"istanbul": "^1.0.0-alpha",
"js-beautify": "^1.9.0",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FelipeBB/GoF-JS.git"
},
"keywords": [
"design",
"patterns",
"gof"
],
"author": "felipe baravieira",
"license": "MIT",
"bugs": {
"url": "https://github.com/FelipeBB/GoF-JS/issues"
},
"homepage": "https://github.com/FelipeBB/GoF-JS#readme"
}