-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
48 lines (48 loc) · 1.12 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
{
"name": "stf-syrup",
"version": "1.0.0",
"description": "Promise-based, configuration-less dependency injection.",
"keywords": [
"promise",
"di",
"dependency",
"injection"
],
"bugs": {
"url": "https://github.com/openstf/stf-syrup/issues"
},
"license": "Apache-2.0",
"author": {
"name": "CyberAgent, Inc.",
"email": "[email protected]",
"url": "http://www.cyberagent.co.jp/"
},
"main": "./index",
"repository": {
"type": "git",
"url": "https://github.com/openstf/stf-syrup.git"
},
"scripts": {
"postpublish": "gulp postpublish --require coffee-script/register",
"prepublish": "gulp prepublish --require coffee-script/register",
"test": "gulp test --require coffee-script/register"
},
"dependencies": {
"bluebird": "~1.1.0",
"lodash": "~2.4.1"
},
"devDependencies": {
"coffee-script": "~1.7.1",
"gulp": "~3.5.5",
"gulp-coffee": "~1.4.1",
"gulp-clean": "~0.2.4",
"gulp-mocha": "~0.4.1",
"mocha": "~1.17.1",
"chai": "~1.9.0",
"sinon": "~1.9.0",
"sinon-chai": "~2.5.0"
},
"engines": {
"node": ">= 0.10"
}
}