-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.11 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.11 KB
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
{
"name": "sc-data-binding-helpers",
"version": "2.0.0",
"description": "Polymer 2.x mixin that provides some useful methods for data bindings.",
"main": "sc-data-binding-helpers.js",
"types": "sc-data-binding-helpers.d.ts",
"devDependencies": {
"@supportclass/tsconfig-base": "^1.0.2",
"standard-version": "^4.4.0",
"tslib": "^1.9.3",
"tslint": "^5.11.0",
"tslint-xo": "^0.10.0",
"typescript": "^3.2.2"
},
"scripts": {
"test": "tslint -p tsconfig.json",
"prebuild": "npm t",
"build": "tsc -p tsconfig.json",
"prerelease": "npm run build",
"release": "standard-version",
"postrelease": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SupportClass/sc-data-binding-helpers.git"
},
"keywords": [
"polymer",
"mixin",
"data",
"binding",
"helpers"
],
"author": "Alex Van Camp <alex@supportclass.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SupportClass/sc-data-binding-helpers/issues"
},
"homepage": "https://github.com/SupportClass/sc-data-binding-helpers#readme"
}