-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
96 lines (96 loc) · 2.51 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
{
"name": "aurelia-metadata",
"version": "1.0.8",
"description": "Utilities for reading and writing the metadata of JavaScript functions.",
"keywords": [
"aurelia",
"metadata",
"annotations"
],
"homepage": "http://aurelia.io",
"bugs": {
"url": "https://github.com/aurelia/metadata/issues"
},
"license": "MIT",
"author": "Rob Eisenberg <[email protected]> (http://robeisenberg.com/)",
"main": "dist/commonjs/aurelia-metadata.js",
"module": "dist/native-modules/aurelia-metadata.js",
"typings": "dist/types/aurelia-metadata.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/aurelia/metadata"
},
"scripts": {
"clean": "rimraf dist",
"test": "karma start --single-run",
"test:watch": "karma start",
"build": "npm run clean && npm run rollup && npm run build:types",
"doc": "typedoc --entryPoints src/index.ts --json doc/api.json",
"rollup": "rollup -c",
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist/types",
"lint": "eslint ./src ./test --ext .ts,.tsx",
"cut-release": "gulp prepare-release"
},
"files": [
"dist",
"doc",
"src",
"typings.json",
"README.md",
"LICENSE"
],
"jspm": {
"registry": "npm",
"main": "aurelia-metadata",
"format": "amd",
"directories": {
"dist": "dist/amd"
},
"dependencies": {
"aurelia-pal": "^1.0.0"
},
"devDependencies": {
"aurelia-polyfills": "^0.1.1",
"babel": "babel-core@^5.1.13",
"babel-runtime": "^5.1.13",
"core-js": "^2.0.3"
}
},
"dependencies": {
"aurelia-pal": "^1.0.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.1.0",
"@types/jasmine": "^3.6.2",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"aurelia-polyfills": "^1.3.4",
"eslint": "^7.18.0",
"gulp": "^4.0.2",
"gulp-bump": "^3.2.0",
"gulp-conventional-changelog": "^2.0.35",
"gulp-util": "^3.0.7",
"jasmine-core": "^3.6.0",
"karma": "^5.2.3",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^4.0.1",
"karma-typescript": "^5.2.0",
"merge2": "^1.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.36.2",
"through2": "^2.0.1",
"tslib": "^2.1.0",
"typedoc": "^0.20.16",
"typescript": "^4.1.3",
"vinyl": "^2.2.1",
"vinyl-paths": "^3.0.1",
"yargs": "^4.8.1"
},
"standard-version": {
"skip": {
"commit": true,
"tag": true
}
}
}