-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.55 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "blister",
"version": "1.1.0",
"author": "Rubén Norte <rubennorte@gmail.com>",
"description": "Minimalist dependency injection container for JavaScript",
"license": "MIT",
"main": "src/blister.js",
"keywords": [
"dependency",
"injection",
"container",
"di",
"pimple",
"provider",
"service",
"singleton",
"factory",
"value",
"configuration",
"config",
"IoC",
"context"
],
"homepage": "https://github.com/rubennorte/blister",
"bugs": {
"url": "https://github.com/rubennorte/blister/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/rubennorte/blister.git"
},
"files": [
"src",
"dist"
],
"scripts": {
"build": "npm run build:js",
"build:js": "npm run browserify:js && npm run uglify:js",
"browserify:js": "browserify src/blister.js --standalone Blister --debug | exorcist dist/blister.js.map > dist/blister.js",
"uglify:js": "uglifyjs dist/blister.js -o dist/blister.min.js --compress --mangle --in-source-map dist/blister.js.map --source-map dist/blister.min.js.map --source-map-url blister.min.js.map",
"pretest": "npm run lint",
"lint": "eslint src test/unit/specs",
"test": "npm run build:tests && npm run karma:ci",
"build:tests": "npm run browserify:tests",
"browserify:tests": "browserify test/unit/index.js -o test/unit/gen/unit-test-bundle.js --debug",
"karma:ci": "karma start test/unit/config/karma-ci.conf.js",
"develop": "npm-run-all --parallel watchify:tests karma:dev",
"watchify:tests": "watchify test/unit/index.js -o test/unit/gen/unit-test-bundle.js --verbose",
"karma:dev": "karma start test/unit/config/karma-dev.conf.js",
"release": "mversion -m \"New version: %s\"",
"prepare-release": "npm test && npm run build",
"doc": "npm run doc:js",
"doc:js": "jsdoc src --destination doc/js --readme README.md --verbose"
},
"dependencies": {},
"devDependencies": {
"browserify": "^9.0.3",
"watchify": "^2.4.0",
"exorcist": "^0.3.0",
"uglifyjs": "^2.4.10",
"eslint": "^1.9.0",
"eslint-config-airbnb": "^1.0.0",
"karma": "^0.13.15",
"jasmine-core": "^2.3.4",
"karma-jasmine": "^0.3.6",
"karma-junit-reporter": "^0.3.8",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sourcemap-loader": "^0.3.6",
"karma-verbose-reporter": "0.0.3",
"phantomjs": "^1.9.18",
"phantomjs-polyfill": "0.0.1",
"jsdoc": "^3.4.0",
"npm-run-all": "^1.3.3",
"mversion": "^1.10.1"
},
"engines": {
"node": ">=0.10.0",
"npm": ">=2.0.0"
}
}