-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.96 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
{
"name": "eventize",
"version": "0.7.0",
"description": "Make your methods emit events",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/rubennorte/eventize.git"
},
"bugs": "https://github.com/rubennorte/eventize/issues",
"scripts": {
"lint": "npm run lint:errors && npm run lint:style",
"lint:errors": "jshint lib tests/unit tests/helpers",
"lint:style": "jscs lib && cd tests && jscs unit helpers",
"jasmine": "node tests/launch-unit.js",
"pretest": "npm run lint",
"test": "npm run jasmine",
"coverage": "istanbul cover tests/launch-unit.js",
"test:browsers": "npm run browserify:tests && node_modules/karma/bin/karma start tests/karma.conf.js",
"browserify:tests": "browserify tests/unit/index.js -o tests/unit.build.js",
"browserify:bundle": "browserify lib/index.js --standalone eventize -o dist/eventize.js",
"uglify:bundle": "uglifyjs dist/eventize.js --compress --mangle > dist/eventize.min.js",
"prebuild": "rm -rf dist && mkdir dist",
"build": "npm test && npm run browserify:bundle && npm run uglify:bundle",
"travis": "npm run coverage && cat ./tests/output/coverage/lcov.info | coveralls && rm -rf ./tests/output/coverage",
"release": "mversion -m \"New version: %s\" "
},
"files": [
"dist",
"lib"
],
"author": "Rubén Norte <rubennorte@gmail.com>",
"license": "MIT",
"devDependencies": {
"browserify": "^9.0.3",
"coveralls": "^2.11.2",
"istanbul": "^0.3.7",
"jasmine": "^2.2.1",
"jasmine-core": "^2.2.0",
"jasmine-spec-reporter": "^2.1.0",
"jscs": "^1.11.3",
"jshint": "^2.6.3",
"karma": "^0.12.31",
"karma-chrome-launcher": "^0.1.7",
"karma-firefox-launcher": "^0.1.4",
"karma-jasmine": "^0.3.5",
"karma-phantomjs-launcher": "^0.1.4",
"karma-sauce-launcher": "^0.2.10",
"mversion": "^1.10.0",
"uglify-js": "^2.4.17"
},
"engines": {
"node": ">=0.10.0",
"npm": ">=2.0.0"
}
}