-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 2.49 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
{
"name": "aurelia-inputmask",
"version": "2.0.1",
"registry": "github",
"description": "Aurelia plugin for https://github.com/RobinHerbots/Inputmask",
"keywords": [
"aurelia",
"plugin",
"inputmask"
],
"homepage": "https://github.com/MaximBalaganskiy/aurelia-inputmask",
"bugs": {
"url": "https://github.com/MaximBalaganskiy/aurelia-inputmask/issues"
},
"license": "MIT",
"author": "MaximBalaganskiy",
"scripts": {
"lint": "tslint --project tsconfig.json",
"pretest": "npm run lint",
"build:amd": "tsc --outDir dist/amd --module amd",
"postbuild:amd": "copyfiles --up 1 src/**/*.html src/**/*.css src/**/*.map dist/amd",
"build:commonjs": "tsc --outDir dist/commonjs --module commonjs",
"postbuild:commonjs": "copyfiles --up 1 src/**/*.html src/**/*.css src/**/*.map dist/commonjs",
"build:es2015": "tsc --outDir dist/es2015 --module es2015 --target es6",
"postbuild:es2015": "copyfiles --up 1 src/**/*.html src/**/*.css src/**/*.map dist/es2015",
"build:native-modules": "tsc --outDir dist/native-modules --module es2015",
"postbuild:native-modules": "copyfiles --up 1 src/**/*.html src/**/*.css src/**/*.map dist/native-modules",
"build:system": "tsc --outDir dist/system --module system",
"postbuild:system": "copyfiles --up 1 src/**/*.html src/**/*.css src/**/*.map dist/system",
"prebuild": "rimraf dist",
"build": "concurrently \"npm run build:amd\" \"npm run build:commonjs\" \"npm run build:es2015\" \"npm run build:native-modules\" \"npm run build:system\"",
"postbuild": "concurrently \"npm run postbuild:amd\" \"npm run postbuild:commonjs\" \"npm run postbuild:es2015\" \"npm run postbuild:native-modules\" \"npm run postbuild:system\"",
"release": "standard-version"
},
"main": "dist/commonjs/index.js",
"typings": "dist/commonjs/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/MaximBalaganskiy/aurelia-inputmask"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"aurelia-framework": ">=1.3.1",
"concurrently": "^5.3.0",
"copyfiles": "^2.4.1",
"eslint": "^7.18.0",
"eslint-plugin-compat": "^3.9.0",
"eslint-plugin-import": "^2.22.1",
"inputmask": ">=5.0.5",
"rimraf": "^3.0.2",
"standard-version": "^9.1.0",
"tslint": "^5.20.1",
"typescript": "^4.1.3"
},
"peerDependencies": {
"aurelia-framework": ">=1.3.1",
"inputmask": ">=4.0.0",
"tslib": ">=1.9.0"
}
}