-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1017 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
{
"name": "v8.js",
"version": "2.0.0",
"description": "Call native V8 engine functions.",
"keywords": [
"native",
"optimization",
"engine",
"memory"
],
"main": "src/index.js",
"type": "module",
"scripts": {
"lint": "eslint **/*.js",
"test": "ava --no-worker-threads --node-arguments='--allow-natives-syntax'"
},
"eslintConfig": {
"extends": "@gmartigny/eslint-config"
},
"author": "GMartigny",
"funding": "https://github.com/GMartigny/v8.js?sponsor=1",
"repository": {
"type": "git",
"url": "git+https://github.com/GMartigny/v8.js.git"
},
"bugs": {
"url": "https://github.com/GMartigny/v8.js/issues"
},
"license": "MIT",
"devDependencies": {
"@gmartigny/eslint-config": "^2.2.0",
"ava": "^6.1.0",
"eslint": "^8.56.0"
},
"homepage": "https://github.com/GMartigny/v8.js#readme",
"directories": {
"test": "test"
}
}