-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1 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
{
"name": "flowlint",
"version": "1.0.0",
"description": "SecureX Workflow Linter",
"main": "index.js",
"repository": "https://github.com/CiscoAandI/flowlint.git",
"author": "Ava Thorn <avthorn@cisco.com>",
"license": "MIT",
"private": false,
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-transform-modules-commonjs": "^7.15.0",
"jest": "^27.2.0"
},
"dependencies": {
"@stoplight/spectral": "6.0.0-alpha3",
"jsonschema": "^1.4.0",
"node": "^16.9.1"
},
"jest": {
"testMatch": [
"**/__tests__/**/*.?(m)js?(x)",
"**/?(*.)(spec|test).?(m)js?(x)"
],
"transform": {
"^.+\\.m?js$": "babel-jest"
},
"moduleFileExtensions": [
"js",
"json",
"jsx",
"node",
"mjs"
]
},
"babel": {
"env": {
"test": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
}
}
}
}