-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "event-js",
"description": "A simple class for allowing c# style events (with some extra features) in js",
"version": "0.1.4",
"main": "dist/commonjs/index.js",
"files": [
"dist",
"index.d.ts"
],
"typings": "dist/definitions/index.d.ts",
"bugs": {
"url": "https://github.com/grofit/eventjs/issues"
},
"keywords": [
"events"
],
"repository": {
"type": "git",
"url": "https://github.com/grofit/eventjs"
},
"scripts": {
"test": "karma start --single-run --browsers PhantomJS ./tests/karma.conf.js"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-typescript": "^3.2.2",
"typescript": "^2.4.2",
"gulp-es6-exporter": "^0.0.5",
"rimraf": "^2.6.1",
"mkdirp": "^0.5.1",
"webpack-stream": "^4.0.0",
"require-dir": "^0.3.2",
"merge2": "^1.1.0",
"del": "^3.0.0",
"chai": "^4.1.1",
"karma": "^1.7.1",
"mocha": "^3.5.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-firefox-launcher": "^1.0.1",
"karma-chai": "^0.1.0",
"phantomjs-prebuilt": "^2.1.15"
}
}