-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 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
{
"name": "simpledi",
"version": "1.2.0",
"description": "A simple dependency injector",
"main": "src/simpledi.js",
"config": {
"namespace": "simpleDi"
},
"keywords": [
"dependency",
"di",
"dependency-injection",
"injector"
],
"scripts": {
"lint": "jshint src test && jscs src test",
"test": "istanbul test _mocha -- --reporter dot --recursive -r setup-referee-sinon/globals test",
"build": "mkdir -p dist && npm install && NODE_ENV=production browserify src/simpledi.js --insert-global-vars global -s $npm_package_config_namespace > dist/$npm_package_config_namespace.max.js && uglifyjs dist/$npm_package_config_namespace.max.js -cm > dist/$npm_package_config_namespace.js"
},
"author": "Julian Hollmann <julian@fwdoperating.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fwdop/simpledi.git"
},
"devDependencies": {
"browserify": "^16.2.3",
"istanbul": "^0.4.5",
"jscs": "^3.0.7",
"jshint": "^2.6.0",
"mocha": "^5.2.0",
"referee": "^1.1.1",
"referee-sinon": "^1.0.2",
"setup-referee-sinon": "^0.2.0",
"sinon": "^1.12.2",
"uglify-js": "^2.4.17"
},
"dependencies": {
"function-bind": "^1.0.2"
}
}