forked from learn-javascript-courses/composition-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.68 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
{
"name": "composition-examples",
"version": "1.0.1",
"description": "Examples for The Two Pillars of JavaScript class: Composition",
"main": "index.js",
"scripts": {
"lint": "eslint examples test",
"test": "babel-node test/index.js",
"watch": "watch 'clear && npm run -s lint && npm run -s test' examples test",
"----- Examples ----": "",
"shape": "babel-node test/shape/index.js",
"highpass": "babel-node test/highpass/index.js",
"gorilla-banana/v1": "babel-node test/gorilla-banana/v1/index.js",
"gorilla-banana/v1/fail": "babel-node test/gorilla-banana/v1/fail.js",
"gorilla-banana/v2/fail": "babel-node test/gorilla-banana/v2/fail.js",
"gorilla-banana/v3": "babel-node test/gorilla-banana/v3",
"simple-mixin-filter": "babel-node test/simple-mixin-filter",
"simple-factory-encapsulation": "babel-node test/simple-mixin-filter",
"simple-compose": "babel-node test/simple-compose",
"stamp-compose": "babel-node test/stamp-compose"
},
"directories": {
"example": "examples",
"test": "test"
},
"dependencies": {
"eslint": "^1.7.0",
"stamp-utils": "^1.2.4",
"tape": "^4.2.1",
"watch": "^0.16.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/learn-javascript-courses/composition-examples.git"
},
"keywords": [
"composition",
"prototypal",
"oo",
"oop"
],
"author": "Eric Elliott",
"license": "MIT",
"bugs": {
"url": "https://github.com/learn-javascript-courses/composition-examples/issues"
},
"homepage": "https://github.com/learn-javascript-courses/composition-examples#readme"
}