-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 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
64
65
66
67
68
69
70
71
72
73
{
"name": "cypress-aurelia-unit-test",
"version": "1.0.0",
"description": "A library to assist in using Cypress in the browser.",
"keywords": [
"aurelia",
"cypress",
"unit",
"testing"
],
"homepage": "https://github.com/silbinarywolf/cypress-aurelia-unit-test",
"bugs": {
"url": "https://github.com/silbinarywolf/cypress-aurelia-unit-test/issues"
},
"license": "MIT",
"author": "Jake Bentvelzen (https://github.com/silbinarywolf/)",
"main": "dist/native-modules/index.js",
"typings": "dist/native-modules/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/silbinarywolf/cypress-aurelia-unit-test"
},
"scripts": {
"build": "npm run-script build:native-modules",
"build:native-modules": "tsc --project tsconfig.build.json --outDir dist/native-modules --module es2015",
"prepare": "npm run-script build",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"tslint": "tslint -c ./tslint.json -p tsconfig.json",
"tslint:fix": "tslint --fix -c ./tslint.json -p tsconfig.json",
"tsfmt": "tsfmt -r",
"tsfmt:verify": "tsfmt --verify -r",
"semantic-release": "semantic-release"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {},
"devDependencies": {
"@cypress/webpack-preprocessor": "^4.1.0",
"@types/bluebird": "^3.5.27",
"aurelia-bootstrapper": "^2.1.1",
"aurelia-dependency-injection": "^1.4.2",
"aurelia-dialog": "^1.1.0",
"aurelia-framework": "^1.3.0",
"aurelia-logging": "^1.5.2",
"aurelia-pal": "^1.8.2",
"aurelia-pal-browser": "^1.3.0",
"aurelia-polyfills": "^1.2.2",
"aurelia-templating": "^1.10.2",
"aurelia-webpack-plugin": "^3.0.0",
"closure-webpack-plugin": "^2.0.1",
"commitizen": "^3.1.2",
"css-loader": "^2.0.1",
"css-modules-typescript-loader": "^1.1.1",
"cypress": "^3.4.1",
"husky": "^1.3.1",
"reflect-metadata": "^0.1.12",
"sass": "^1.15.2",
"sass-loader": "^7.1.0",
"semantic-release": "^15.13.19",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.1",
"tslint": "^5.18.0",
"typescript": "^3.5.3",
"typescript-formatter": "^7.2.2",
"webpack": "^4.28.1",
"webpack-cli": "^3.1.2",
"webpack-merge": "^4.1.5"
}
}