-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.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
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
{
"name": "@ssv/au-ui",
"version": "0.8.0",
"description": "UI components library for Aurelia by Sketch7",
"keywords": [
"sketch7",
"aurelia",
"core",
"ui",
"ux",
"web components",
"components"
],
"scripts": {
"start": "gulp watch",
"test": "gulp test",
"tdd": "gulp tdd",
"watch": "gulp watch",
"lint": "gulp lint",
"build": "gulp build",
"bundle": "gulp bundle:ts",
"prepare-release": "gulp prepare-release"
},
"author": "Stephen Lautier <[email protected]>, Clayton Lautier <[email protected]>",
"license": "MIT",
"main": "dist/bundles/ssv-au-ui.umd.js",
"module": "dist/es2015/index.js",
"typings": "dist/umd/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/sketch7/ssv-au-ui"
},
"devDependencies": {
"@ssv/tools": "^0.6.12",
"@types/jest": "^21.1.2",
"@types/lodash": "^4.14.77",
"@types/node-waves": "^0.7.2",
"aurelia-polyfills": "^1.2.2",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-bump": "^2.8.0",
"gulp-conventional-changelog": "^1.1.6",
"gulp-git": "^2.4.2",
"gulp-plumber": "^1.1.0",
"gulp-sourcemaps": "^2.6.1",
"gulp-util": "^3.0.8",
"jasmine-core": "^2.8.0",
"jasmine-jquery": "^2.1.1",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"jest-environment-node-debug": "^2.0.0",
"jest-jquery-matchers": "^1.4.2",
"jquery": "^3.2.1",
"require-dir": "^0.3.2",
"run-sequence": "^2.2.0",
"systemjs": "^0.20.19",
"ts-jest": "^21.1.2",
"typescript": "^2.5.3",
"yargs": "^9.0.1"
},
"dependencies": {
"@ssv/au-core": "^0.3.10",
"@ssv/core": "^0.3.22",
"aurelia-binding": "^1.3.0",
"aurelia-dependency-injection": "^1.3.2",
"aurelia-event-aggregator": "^1.0.1",
"aurelia-framework": "^1.1.5",
"aurelia-templating": "^1.5.0",
"node-waves": "^0.7.5",
"normalize-scss": "^7.0.0"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"setupTestFrameworkScriptFile": "<rootDir>/test/test-setup.ts",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}