forked from aurelia/ux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.89 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "aurelia-ux",
"private": true,
"homepage": "http://aurelia.io",
"bugs": {
"url": "https://github.com/aurelia/ux/issues"
},
"license": "MIT",
"author": "Rob Eisenberg <[email protected]> (http://robeisenberg.com/)",
"contributors": [
"Zach Hollingshead <[email protected]>",
"Fred Kleuver <https://github.com/fkleuver>"
],
"main": "dist/commonjs/index.js",
"module": "dist/native-modules/index.js",
"typings": "dist/commonjs/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/aurelia/ux"
},
"scripts": {
"lint": "eslint -c .eslintrc.json packages/**/src/*.ts",
"test": "lerna run test",
"develop": "cross-env TS_NODE_PROJECT=\"tsconfig-tsnode.json\" karma start --package=core",
"bootstrap": "lerna bootstrap --hoist",
"build": "lerna run build --ignore @aurelia-ux/__e2e__ --ignore @aurelia-ux/__tests__",
"predoc": "cross-env rimraf doc/api.json && rimraf dist/doc-temp && tsc --project tsconfig.json --outFile dist/doc-temp/aurelia-ux.js && node doc/shape-defs && copyfiles tsconfig.json dist/doc-temp",
"doc": "cross-env typedoc --json doc/api.json --excludeExternals --includeDeclarations --mode modules --target ES6 --name aurelia-ux-docs dist/doc-temp/",
"postdoc": "cross-env node doc/shape-doc && rimraf dist/doc-temp",
"changelog": "cross-env conventional-changelog -p angular -i doc/CHANGELOG.md -s",
"bump-version": "npm --no-git-tag-version version",
"preprepare-release": "cross-env npm run test",
"prepare-release": "cross-env npm run changelog && npm run build && npm run doc",
"refresh": "lerna clean -y && npm run bootstrap"
},
"dependencies": {
"aurelia-binding": "^2.0.0",
"aurelia-dependency-injection": "^1.5.2",
"aurelia-event-aggregator": "^1.0.3",
"aurelia-framework": "^1.3.1",
"aurelia-history-browser": "^1.4.0",
"aurelia-loader": "^1.0.2",
"aurelia-logging": "^1.5.2",
"aurelia-logging-console": "^1.1.1",
"aurelia-metadata": "^1.0.6",
"aurelia-pal": "^1.8.2",
"aurelia-pal-browser": "^1.8.1",
"aurelia-polyfills": "^1.3.4",
"aurelia-router": "^1.7.1",
"aurelia-task-queue": "^1.3.3",
"aurelia-templating": "^1.10.2",
"aurelia-templating-binding": "^1.5.3",
"aurelia-templating-resources": "^1.6.0",
"aurelia-templating-router": "^1.4.0",
"aurelia-typed-observable-plugin": "^0.4.2",
"moment": "^2.26.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@types/jasmine": "^2.8.6",
"@types/karma": "^1.7.3",
"@types/lodash": "^4.14.149",
"@types/node": "^7.0.11",
"@types/webpack": "^4.39.8",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"aurelia-pal-nodejs": "^1.0.0-beta.1.0.0",
"aurelia-testing": "^1.0.0-beta.3.0.1",
"aurelia-webpack-plugin": "^4.0.0",
"concurrently": "^3.4.0",
"conventional-changelog-cli": "^2.0.27",
"copyfiles": "^1.2.0",
"cross-env": "^3.2.4",
"css-loader": "^3.5.3",
"eslint": "^7.1.0",
"html-entities": "^1.2.1",
"istanbul-instrumenter-loader": "^3.0.0",
"jasmine-core": "3.5.0",
"karma": "^5.0.9",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "2.0.2",
"karma-coverage-istanbul-reporter": "3.0.2",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "3.1.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "4.0.2",
"lerna": "^3.18.4",
"path": "^0.12.7",
"requirejs": "^2.3.3",
"requirejs-text": "^2.0.15",
"rimraf": "^3.0.0",
"strip-ansi": "^6.0.0",
"ts-loader": "^7.0.4",
"ts-node": "^5.0.1",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.1",
"typedoc": "^0.17.7",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-dev-server": "^3.11.0"
}
}