forked from tokuhirom/node-perl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.23 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
54
55
56
57
58
{
"name": "perl",
"version": "1.6.0",
"description": "embed Perl5 to node.js",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.14.1"
},
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.0.1",
"segfault-handler": "^1.3.0",
"tap": "^14.10.7"
},
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"test": "./node_modules/.bin/jest .",
"install": "node-gyp clean && node-gyp configure build",
"debug": "node-gyp clean && node-gyp rebuild --debug"
},
"eslintConfig": {
"extends": "google",
"rules": {
"indent": 0
},
"globals": {
"test": true,
"expect": true
}
},
"repository": {
"type": "git",
"url": "git://github.com/tokuhirom/node-perl.git"
},
"keywords": [
"perl"
],
"engines": {
"node": ">=6.x"
},
"author": "Tokuhiro Matsuno",
"license": "MIT",
"contributors": [
{
"name": "Brandon Lehmann",
"email": "brandonlehmann@gmail.com"
}
]
}