-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.21 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
{
"name": "make-compose",
"version": "1.0.0",
"description": "Hackable implementation of the 'compose' specification",
"main": "build/index.js",
"scripts": {
"lint": "eslint src/ bin/",
"test": "npm run test:unit && npm run test:func",
"test:func": "babel-node test/func | tap-min",
"test:unit": "babel-node test/unit",
"build": "babel -s -d build src",
"prepublish": "npm run lint && npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "[email protected]:stampit-org/make-compose.git"
},
"keywords": [
"stamp",
"composable",
"compose",
"object",
"oop",
"factory"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/stampit-org/make-compose/issues"
},
"homepage": "https://github.com/stampit-org/make-compose#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^5.0.0",
"babel-polyfill": "^6.7.2",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"check-compose": "^1.0.1",
"eslint": "~2.2.0",
"require-all": "^2.0.0",
"tap-min": "^1.1.0"
},
"dependencies": {
"lodash": "^4.5.1"
},
"babel": {
"presets": [
"es2015"
]
}
}