-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.79 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "auslese",
"version": "2.5.0",
"description": "A tiny + fast choice / dropdown preact component.",
"license": "BSD-3-Clause",
"author": "Becklyn Studios <[email protected]>",
"homepage": "https://github.com/Becklyn/auslese",
"repository": {
"type": "git",
"url": "git://github.com/Becklyn/auslese.git"
},
"main": "js/index.js",
"scripts": {
"build": "npm run clean && ./node_modules/.bin/tsc -v && npm run build:ts",
"build:ts": "node_modules/.bin/tsc --noEmitOnError --noErrorTruncation --listEmittedFiles --pretty --noUnusedLocals",
"clean": "node .build/clean.js",
"dev": "node_modules/.bin/tsc --noEmitOnError --noErrorTruncation --listEmittedFiles --pretty -w",
"prepublishOnly": "npm run build",
"test": "npm run test:build && npm run test:lib",
"test:build": "ava",
"test:lib": "node_modules/.bin/cypress run --record --key 481e3c26-1e58-4267-b0ce-469cb401d60d\n",
"test:start": "node_modules/.bin/cypress open"
},
"dependencies": {
"@popperjs/core": "^2.4.4",
"match-sorter": "^4.2.0",
"mojave": "^5.16.1",
"preact": "^10.4.6"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@cypress/webpack-preprocessor": "^5.4.2",
"@types/match-sorter": "^4.0.0",
"ava": "^3.10.1",
"babel-loader": "^8.1.0",
"cypress": "^8.0.0",
"glob": "^7.1.6",
"sass": "^1.49.9",
"terser": "^4.8.0",
"typescript": "^3.9.7",
"webpack": "^4.43.0"
},
"ava": {
"babel": true,
"failFast": true,
"verbose": true,
"files": [
"tests/ava/**/*"
]
}
}