forked from dougludlow/ng2-bs3-modal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.28 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
{
"name": "ng2-bs3-modal",
"version": "0.5.1",
"description": "Angular2 Boostrap3 Modal Component",
"main": "ng2-bs3-modal.js",
"scripts": {
"peer": "npm install es6-promise@^3.0.2 es6-shim@^0.33.3 [email protected] [email protected] [email protected]",
"lint": "node ./node_modules/.bin/tslint ./src/**/*.ts",
"clean": "node ./node_modules/.bin/rimraf ./bundles/ ./components/ ./directives/ ./ng2-bs3-modal.js ./ng2-bs3-modal.d.ts",
"tsc": "node ./node_modules/.bin/tsc --project . --declaration",
"tsc-test": "node ./node_modules/.bin/tsc --project ./test",
"tsc-single": "node ./node_modules/.bin/tsc --project . --rootDir ./src --module system --outFile ./bundles/ng2-bs3-modal.js",
"uglify": "node ./node_modules/.bin/uglifyjs ./bundles/ng2-bs3-modal.js --output ./bundles/ng2-bs3-modal.min.js",
"bundles": "npm run tsc-single && npm run uglify",
"build": "npm run clean && npm run typings && npm run lint && npm run tsc && npm run bundles",
"prepublish": "npm run build",
"typings": "node ./node_modules/.bin/typings install",
"test": "node ./node_modules/.bin/karma start --single-run",
"test-watch": "node ./node_modules/.bin/karma start"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dougludlow/ng2-bs3-modal.git"
},
"keywords": [
"angular2",
"bootstrap",
"modal",
"component"
],
"author": "Douglas Ludlow <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/dougludlow/ng2-bs3-modal/issues"
},
"homepage": "https://github.com/dougludlow/ng2-bs3-modal#readme",
"devDependencies": {
"angular2": "^2.0.0-beta.14",
"bootstrap": "^3.3.6",
"es6-shim": "^0.35.0",
"jasmine": "^2.4.1",
"jquery": "^2.2.1",
"karma": "^0.13.21",
"karma-chrome-launcher": "^0.2.2",
"karma-jasmine": "^0.3.7",
"karma-phantomjs-launcher": "^1.0.0",
"karma-spec-reporter": "0.0.24",
"phantomjs-prebuilt": "2.1.6",
"reflect-metadata": "0.1.2",
"rimraf": "^2.5.1",
"rxjs": "5.0.0-beta.2",
"systemjs": "^0.19.23",
"tslint": "^3.7.1",
"typescript": "^1.8.9",
"typings": "^0.7.9",
"uglify-js": "^2.6.2",
"zone.js": "0.6.6"
},
"peerDependencies": {
"angular2": "^2.0.0-beta.9",
"bootstrap": "~3.3.x"
}
}