-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "jvm-npm",
"version": "0.1.1",
"description": "Support for NPM module loading in Javascript runtimes on the JVM",
"main": "src/main/javascript/jvm-npm.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "mvn integration-test",
"lint": "eslint src/main/javascript/jvm-npm.js"
},
"files": [
"package.json",
"pom.xml",
"README.md",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nodyn/jvm-npm.git"
},
"author": "Lance Ball <[email protected]> (http://lanceball.com)",
"contributors": [
"Bob McWhirter <[email protected]>",
"Helio Frota <[email protected]> (http://lanceball.com)"],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nodyn/jvm-npm/issues"
},
"homepage": "https://github.com/nodyn/jvm-npm#readme",
"devDependencies": {
"eslint": "^3.5.0",
"eslint-config-semistandard": "^7.0.0",
"eslint-config-standard": "^6.0.1",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-react": "^6.2.2",
"eslint-plugin-standard": "^2.0.0"
}
}