-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 854 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 854 Bytes
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": "@flippercloud.io/expressions",
"version": "1.0.0",
"description": "Library and Schema for evaluating Flipper Expressions",
"type": "module",
"files": [
"dist",
"schemas",
"examples"
],
"main": "./dist/expressions.umd.cjs",
"module": "./dist/expressions.js",
"exports": {
".": {
"import": "./dist/expressions.js",
"require": "./dist/expressions.umd.cjs"
}
},
"repository": "https:://github.com/jnunemaker/flipper",
"license": "MIT",
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"standard": "^17.0.0",
"vite": "^4.2.1",
"vitest": "^0.29.8"
},
"scripts": {
"build": "vite build",
"lint": "standard",
"test": "vitest",
"prepare": "npm run build",
"prepack": "npm run build"
}
}