-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 833 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
{
"name": "babel-plugin-transform-gl-matrix",
"version": "1.0.1",
"description": "A babel plugin for gl-matrix",
"main": "src/index.js",
"type": "module",
"scripts": {
"compile": "babel test/index.js",
"compile:case": "babel test/simple.js",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test:coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"lint": "eslint --fix --ext .js src test"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"cross-env": "^7.0.3",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"gl-matrix": "^3.4.3",
"jest": "^29.3.1"
}
}