-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 843 Bytes
/
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
{
"name": "maxhoffmann-emitter",
"version": "1.1.0",
"description": "event emitter built with the frozen closure pattern",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/maxhoffmann/emitter.git"
},
"scripts": {
"test": "node test/index.js",
"test-node": "tape test/index.js | tap-spec",
"test-browser": "testling -u",
"build": "webpack index.js dist/emitter.js --optimize-minimize --output-library Emitter --output-library-target umd --progress --colors"
},
"testling": {
"files": "test/index.js",
"browsers": [
"chrome/latest"
]
},
"author": "Maximilian Hoffmann",
"license": "MIT",
"devDependencies": {
"tap-spec": "^0.2.1",
"tape": "^2.14.0",
"testling": "^1.7.0",
"uglify-js": "^2.4.15",
"webpack": "^1.3.3-beta2"
}
}