-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "aurelia-getter-throttle",
"version": "1.0.5",
"description": "Throttle getter to make Aurelia rendering efficient",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"test": "tape -r @babel/register test.js",
"preversion": "npm test",
"version": "standard-changelog && git add CHANGELOG.md",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aurelia-contrib/aurelia-getter-throttle.git"
},
"keywords": [
"Aurelia"
],
"author": "Chunpeng Huo",
"license": "MIT",
"bugs": {
"url": "https://github.com/aurelia-contrib/aurelia-getter-throttle/issues"
},
"homepage": "https://github.com/aurelia-contrib/aurelia-getter-throttle",
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/register": "^7.8.6",
"standard-changelog": "^2.0.21",
"tape": "^4.13.2"
}
}