forked from antonmedv/finder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 904 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
39
40
41
42
{
"name": "@medv/finder",
"version": "2.0.0",
"description": "CSS Selector Generator",
"repository": "antonmedv/finder",
"homepage": "https://github.com/antonmedv/finder",
"author": "Anton Medvedev <anton@medv.io>",
"license": "MIT",
"keywords": [
"css",
"selector",
"generator"
],
"main": "finder.js",
"types": "finder.d.ts",
"files": [
"*.ts",
"*.js"
],
"scripts": {
"start": "tsc -w",
"test": "tsc && ava",
"prepare": "tsc",
"release": "release-it --access public",
"size": "minify finder.js --sourceType module | gzip-size"
},
"devDependencies": {
"ava": "^3.8.2",
"browser-env": "^3.3.0",
"esm": "^3.2.25",
"gzip-size-cli": "*",
"babel-minify": "*",
"release-it": "^13.6.1",
"typescript": "3.9.3"
},
"ava": {
"require": [
"esm",
"./test/helpers/setup-browser-env.js"
]
}
}