This repository has been archived by the owner on Nov 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
77 lines (77 loc) · 2.79 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
{
"name": "k15t-aui-ng2",
"version": "0.0.29",
"license": "MIT",
"author": "Sven Walter <[email protected]> (http://www.k15t.com)",
"scripts": {
"clean:all": "rimraf node_modules typings target && npm cache clean",
"prepublish": "typings install",
"watch": "npm run watch:dev",
"watch:dev": "debug=true webpack --watch --config webpack-config.js --progress --profile --colors --display-error-details --display-cached",
"build": "npm run build:dev",
"build:dev": "debug=true devMode=true webpack --progress --config webpack-config.js --profile --colors --display-error-details --display-cached",
"build:prod": "webpack --config webpack-config.js --progress --profile --colors --display-error-details --display-cached",
"start": "npm run demo",
"demo": "devMode=true startDemo=true webpack-dev-server --config webpack-config.js --progress --profile --colors --display-error-details --display-cached --inline",
"test": "testMode=true karma start",
"create:docs": "typedoc --options k15t-webpack-build/build/typedoc.json src/**/*.ts --out ./target/doc",
"deploy": "npm run --releasedemo=true build && git add -A public && git commit -am 'Publish new release to gh-pages' && git subtree push --prefix=public origin gh-pages && git push --force",
"prepare:release": "rimraf dist target && release=true npm run build:prod && rimraf dist/demo && rimraf dist/*.js",
"release": "npm run prepare:release && npm publish && npm run deploy"
},
"main": "dist",
"files": [
"dist"
],
"keywords": [
"atlassian",
"angular",
"ng2",
"frontend",
"AUI",
"ADG"
],
"dependencies": {
"@angular/common": "2.0.0-rc.4",
"@angular/compiler": "2.0.0-rc.4",
"@angular/core": "2.0.0-rc.4",
"@angular/http": "2.0.0-rc.4",
"@angular/platform-browser": "2.0.0-rc.4",
"@angular/platform-browser-dynamic": "2.0.0-rc.4",
"@angular/router": "2.0.0-rc.2",
"codemirror": "5.14.2",
"es6-shim": "0.35.0",
"es6-promise": "3.1.2",
"jquery": "2.2.3",
"ng2-translate": "2.2.2",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.6",
"zone.js": "^0.6.12"
},
"devDependencies": {
"jasmine-core": "2.4.x",
"k15t-webpack-build": "0.1.x",
"karma": "0.13.x",
"karma-coverage": "0.5.x",
"karma-jasmine": "0.3.x",
"karma-phantomjs-launcher": "0.2.x",
"karma-sourcemap-loader": "0.3.x",
"karma-verbose-summary-reporter": "0.0.x",
"karma-webpack": "1.7.x",
"phantomjs": "1.9.x",
"phantomjs-polyfill": "0.0.x",
"rimraf": "2.5.x",
"string-replace-loader": "1.0.x"
},
"repository": {
"type": "git",
"url": "https://github.com/K15t/aui-ng2"
},
"bugs": {
"url": "https://github.com/K15t/aui-ng2/issues"
},
"engines": {
"node": ">= 4.2.1 <= 5",
"npm": ">= 3"
}
}