-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "subscribr",
"version": "2.1.4",
"description": "A tiny event subscriber.",
"main": "./dist/subscribr.js",
"scripts": {
"prepublish": "npm run build",
"build": "npm run clean && npm run transpile && npm run minify",
"minify": "uglifyjs dist/subscribr.js -c -o dist/subscribr.js",
"transpile": "babel src/subscribr.js --out-file dist/subscribr.js",
"test": "mocha --compilers js:babel-register test/**/*.spec.js",
"clean": "rm -rf dist && mkdir dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GMaiolo/subscribr.git"
},
"files": [
"src",
"dist"
],
"keywords": [
"library",
"lib",
"subscriber",
"event",
"handler",
"management",
"api"
],
"author": "GMaiolo",
"license": "MIT",
"bugs": {
"url": "https://github.com/GMaiolo/subscribr/issues"
},
"homepage": "https://github.com/GMaiolo/subscribr#readme",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.22.0",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"uglify-js": "github:mishoo/UglifyJS2#harmony"
}
}