This repository was archived by the owner on Apr 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
137 lines (137 loc) · 4.18 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "aurelia-formio",
"version": "1.0.0-beta.3",
"description": "Form.io renderer and builder for Aurelia.",
"keywords": [
"formio",
"plugin",
"aurelia"
],
"main": "dist/commonjs/index.js",
"typings": "dist/commonjs/index.d.ts",
"scripts": {
"lint": "cross-env tslint --project tsconfig.json",
"pretest": "cross-env npm run lint",
"test": "cross-env jest",
"test-watch": "concurrently \"./node_modules/.bin/tsc --watch\" \"./node_modules/.bin/karma start\"",
"build:amd": "cross-env tsc --outDir dist/amd --module amd",
"build:commonjs": "cross-env tsc --outDir dist/commonjs --module commonjs",
"build:es2015": "cross-env tsc --outDir dist/es2015 --module es2015",
"build:native-modules": "cross-env tsc --outDir dist/native-modules --module es2015",
"build:system": "cross-env tsc --outDir dist/system --module system",
"prebuild": "cross-env rimraf dist",
"postbuild": "gulp",
"build": "concurrently \"npm run build:amd\" \"npm run build:commonjs\" \"npm run build:es2015\" \"npm run build:native-modules\" \"npm run build:system\"",
"prepare-release": "cross-env npm run build && semantic-release pre && npm publish && semantic-release post"
},
"jest": {
"modulePaths": [
"<rootDir>/src",
"<rootDir>/node_modules"
],
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js",
"^.+\\.(scss|css)$": "<rootDir>/node_modules/jest-css-modules"
},
"testRegex": "\\.spec\\.(ts|js)x?$",
"setupFiles": [
"<rootDir>/test/jest-pretest.ts"
],
"testEnvironment": "node",
"moduleNameMapper": {
"aurelia-(.*)": "<rootDir>/node_modules/$1",
"^.+\\.(css)$": "<rootDir>/test/jest-css-stub.js"
},
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,ts}",
"!**/*.spec.{js,ts}",
"!**/node_modules/**",
"!**/test/**"
],
"coverageDirectory": "<rootDir>/test/coverage-jest",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"coverageReporters": [
"json",
"lcov",
"text",
"html"
],
"mapCoverage": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/formio/aurelia-formio.git"
},
"author": "Travis Tidwell <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/formio/aurelia-formio#readme",
"bugs": {
"url": "https://github.com/formio/aurelia-formio/issues"
},
"jspm": {
"registry": "npm",
"jspmPackage": true,
"main": "index",
"format": "cjs",
"directories": {
"dist": "dist/commonjs"
},
"dependencies": {}
},
"dependencies": {
"aurelia-binding": "^1.7.3",
"aurelia-dependency-injection": "^1.3.2",
"aurelia-event-aggregator": "^1.0.1",
"aurelia-framework": "^1.1.5",
"aurelia-loader": "^1.0.0",
"aurelia-logging": "^1.3.1",
"aurelia-metadata": "^1.0.3",
"aurelia-pal": "^1.8.0",
"aurelia-path": "^1.1.1",
"aurelia-task-queue": "^1.2.1",
"aurelia-templating": "^1.6.0",
"aurelia-templating-binding": "^1.4.0",
"formiojs": "^4.0.0-beta.12"
},
"devDependencies": {
"@types/jest": "^21.1.5",
"@types/node": "^8.0.50",
"aurelia-bootstrapper": "^2.1.1",
"aurelia-loader-nodejs": "^1.0.1",
"aurelia-pal-browser": "^1.3.0",
"aurelia-pal-nodejs": "^1.0.0-beta.2.0.0",
"aurelia-polyfills": "^1.2.2",
"aurelia-testing": "^1.0.0-beta.4.0.0",
"concurrently": "^3.5.0",
"cross-env": "^5.1.1",
"gulp": "^3.9.1",
"gulp-sass": "^3.1.0",
"jest": "^21.2.1",
"jest-css-modules": "^1.1.0",
"lodash": "^4.17.11",
"node-sass": "^4.11.0",
"rimraf": "^2.6.2",
"semantic-release": "^8.2.0",
"ts-jest": "^21.2.1",
"tslint": "^5.8.0",
"typescript": "^2.6.1"
},
"aurelia": {
"build": {
"resources": [
"aurelia-formio/formio",
"aurelia-formio/formio.html",
"aurelia-formio/builder",
"aurelia-formio/builder.html"
]
}
}
}