-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
{
"name": "untangle",
"version": "0.0.6",
"description": "Untangle is a library meant to create highly uncoupled code",
"keywords": [
"event aggregator",
"pub sub",
"untangle"
],
"homepage": "https://github.com/stephan-nordnes-eriksen/untangle",
"bugs": "https://github.com/stephan-nordnes-eriksen/untangle/issues",
"author": {
"name": "Stephan Nordnes Eriksen",
"email": "",
"url": "https://github.com/stephan-nordnes-eriksen"
},
"main": "./lib/untangle.js",
"repository": {
"type": "git",
"url": "https://github.com/stephan-nordnes-eriksen/untangle.git"
},
"scripts": {
"test": "gulp test",
"build": "gulp",
"watch": "gulp watch",
"testwatch": "gulp testwatch",
"lint": "coffeelint -f coffeelint.json ./scr/ ./test/"
},
"dependencies": {
},
"devDependencies": {
"chai": "^1.9.1",
"coffee-script": "^1.8.0",
"gulp": "^3.8.6",
"gulp-coffee": "^2.1.1",
"gulp-istanbul": "^0.5.0",
"gulp-mocha": "^2.0.0",
"gulp-plumber": "^1.0.0",
"gulp-util": "^3.0.0",
"mocha": "^2.0.0",
"sinon": "^1.9.1",
"sinon-chai": "^2.5.0",
"coffeelint": "^1.10.0"
},
"engines": {
"node": ">=0.10.0",
"npm": ">=1.2.10"
},
"license": "MIT"
}