-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
26 lines (26 loc) · 870 Bytes
/
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
{
"name": "polymer-benchmarks",
"private": true,
"version": "0.1.0",
"description": "Benchmarks for Polymer project libraries",
"main": "index.js",
"scripts": {
"postinstall": "npm run install:subpackages",
"install:subpackages": "bash -c 'for dir in $(ls -1d */package.json | cut -d/ -f1); do (cd $dir && npm install); done'",
"format": "find . -name node_modules -prune -o -name \"*.js\" -print | xargs clang-format --style=file -i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PolymerLabs/benchmarks.git"
},
"author": "The Polymer Project Authors",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/PolymerLabs/benchmarks/issues"
},
"homepage": "https://github.com/PolymerLabs/benchmarks#readme",
"dependencies": {
"clang-format": "^1.2.4",
"tachometer": "^0.4.15"
}
}