-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.02 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "enot",
"version": "2.0.8",
"description": "Event NOTation system",
"main": "index.js",
"files": [
"index.js",
"enot.js"
],
"scripts": {
"build-min": "npm run build && npm run min && npm run clean && cat enot.js | gzip-size | pretty-bytes",
"build": "uncommon ./index -w \";(function(){window['Emitter']=Enot;%output%;})();\" > enot.dev.js",
"min": "ccjs enot.dev.js --language_in=ECMASCRIPT5 --compilation_level=ADVANCED --process_jquery_primitives --externs=build/externs.js > enot.js",
"clean": "rm enot.dev.js",
"test": "mochify",
"watch": "watchify -r ./index.js:.. -r chai -d -o ./test/bundle.js"
},
"dependencies": {
"each-csv": "*",
"emmy": "^5.3.3",
"key-name": ">=1.0.1",
"matches-selector": ">=1.x",
"mustring": "^1.0.0",
"mutype": "*",
"parenthesis": ">=1.1.0",
"queried": "^1.4.4",
"sliced": "0.0.5"
},
"repository": {
"type": "git",
"url": "[email protected]:dfcreative/enot.git"
},
"keywords": [
"events",
"event",
"emitter",
"component",
"notation"
],
"author": {
"name": "Deema Yvanow",
"email": "[email protected]",
"url": "http://github.com/dfcreative"
},
"license": "unlicensed",
"bugs": {
"url": "https://github.com/dfcreative/enot/issues"
},
"homepage": "https://github.com/dfcreative/enot",
"devDependencies": {
"browserify": "5.x",
"chai": "~1.9.1",
"closurecompiler": "~1.x",
"icicle": "~0.x",
"jquery": "~2.x",
"mocha": "~1.x",
"mocha-phantomjs": "~3.5.0",
"mochify": "^2.13.0",
"phantomjs": "~1.9.7-15",
"polymer-weakmap": "^2.0.0",
"require-stub": "*",
"testling": "~1.x"
},
"testling": {
"files": "test/index.js",
"scripts": "node_modules/polymer-weakmap/weakmap.js",
"harness": "mocha",
"browsers": [
"ie/6..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
]
}
}