-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.22 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
{
"name": "action-emitter",
"version": "0.2.1",
"description": "Action emitter based on fbemitter. Instead of string event types we use classes (functions).",
"main": "dist/action-emitter.js",
"types": "@types/index.d.ts",
"scripts": {
"build": "webpack",
"tslint": "tslint --project . --config ./tslint.json",
"watch": "webpack --watch",
"test": "tsc -p . --noEmit && npm run tslint",
"uglifyjs": "uglifyjs ./dist/action-emitter.js -o ./dist/action-emitter.min.js --compress --mangle",
"release": "npm run build && npm run uglifyjs"
},
"keywords": [
"action",
"emitter",
"fbemitter",
"typescript"
],
"files": [
"@types",
"dist",
"**/*.md"
],
"author": "Giedrius Grabauskas <[email protected]> (https://github.com/GiedriusGrabauskas)",
"bugs": "https://github.com/SimplrJS/action-emitter/issues",
"repository": "SimplrJS/action-emitter",
"homepage": "https://github.com/SimplrJS/action-emitter",
"license": "MIT",
"devDependencies": {
"ts-loader": "^2.0.3",
"tslint": "^5.0.0",
"typescript": "^2.2.2",
"uglify-js": "^2.8.21",
"webpack": "^2.3.3"
},
"dependencies": {
"@types/fbemitter": "^2.0.32",
"fbemitter": "^2.1.1"
}
}