-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 905 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
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "@polymer/ristretto",
"version": "0.3.1",
"license": "BSD-3-Clause",
"flat": true,
"types": "lib/index.d.ts",
"main": "ristretto.js",
"module": "lib/index.js",
"devDependencies": {
"@types/chai": "^4.1.2",
"chai": "^4.1.2",
"rollup": "^0.55.5",
"typescript": "^2.6.2"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"bundle": "rollup -c ./rollup.config.js",
"prepublishOnly": "npm run build && npm run bundle"
},
"description": "Ristretto runs your tests.",
"files": [
"lib"
],
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/PolymerLabs/ristretto.git"
},
"author": "The Polymer Authors",
"bugs": {
"url": "https://github.com/PolymerLabs/ristretto/issues"
},
"homepage": "https://github.com/PolymerLabs/ristretto#readme",
"publishConfig": {
"access": "public"
}
}