forked from Polymer/polymer-decorators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.63 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": "@polymer/decorators",
"version": "2.1.0",
"private": true,
"description": "TypeScript decorators for Polymer 2.0",
"main": "lib/decorators.js",
"types": "lib/decorators.d.ts",
"scripts": {
"postinstall": "bower install",
"clean": "rimraf lib/ polymer-decorators.{js,d.ts} mixins/*.d.ts test/integration/{node_modules,bower_components,bower_cache}",
"format": "find src test \\( -name node_modules -o -name bower_components -o -name bower_cache \\) -prune -o -name '*.ts' -print | xargs clang-format --style=file -i",
"build": "npm run clean && tsc && rollup -c && node scripts/gen-global-typings.js && gen-typescript-declarations --outDir=.",
"prepack": "npm run build",
"test:setup": "npm run build && cd test/integration && npm install && npm run build",
"test": "npm run test:setup && cd test/integration && npm test",
"test:fast": "tsc && rollup -c && node scripts/gen-global-typings.js && cp polymer-decorators.js test/integration/bower_components/polymer-decorators/ && cd test/integration && $(npm bin)/tsc && $(npm bin)/wct -l chrome"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Polymer/polymer-decorators.git"
},
"author": "The Polymer Project Authors",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Polymer/polymer-decorators/issues"
},
"homepage": "https://github.com/Polymer/polymer-decorators#readme",
"dependencies": {},
"devDependencies": {
"@polymer/gen-typescript-declarations": "^1.1.3",
"bower": "^1.8.2",
"clang-format": "^1.0.55",
"rimraf": "^2.6.2",
"rollup": "^0.61.1",
"typescript": "^2.9.2"
}
}