-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
58 lines (58 loc) · 1.77 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
{
"name": "aurelia-pal-nodejs",
"version": "3.0.0-rc.2",
"description": "The Node.js-specific implementation of Aurelia's platform abstraction layer.",
"keywords": [
"aurelia",
"pal",
"nodejs"
],
"homepage": "http://aurelia.io",
"bugs": {
"url": "https://github.com/aurelia/pal-nodejs/issues"
},
"license": "MIT",
"author": "Rob Eisenberg <[email protected]> (http://robeisenberg.com/)",
"contributors": [
"Meirion Hughes <[email protected]> (https://github.com/MeirionHughes)",
"Martin Gustafsson <[email protected]> (https://github.com/martingust)",
"Devan Patel (https://github.com/devanp92)"
],
"main": "dist/index.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist",
"doc/CHANGELOG.md",
"LICENSE"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json",
"build:dts": "tsc -p tsconfig.build.json --emitDeclarationOnly --declaration true --declarationDir dist/types --removeComments false",
"postbuild": "npm run build:dts",
"test": "ts-node node_modules/jasmine/bin/jasmine --config=test/support/jasmine.json",
"changelog": "standard-version -t \"\" -i doc/CHANGELOG.md --skip.commit --skip.tag",
"precut-release": "npm run test && npm run build",
"cut-release": "npm run changelog"
},
"repository": {
"type": "git",
"url": "http://github.com/aurelia/pal-nodejs"
},
"dependencies": {
"aurelia-pal": "^1.8.2",
"jsdom": ">= 19"
},
"devDependencies": {
"@types/jasmine": "^5.1.4",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.12.8",
"jasmine": "^5.1.0",
"jasmine-core": "^5.1.2",
"rimraf": "^5.0.5",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^4.9.5"
}
}