-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (38 loc) · 1.05 KB
/
package.json
File metadata and controls
39 lines (38 loc) · 1.05 KB
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": "nashorn-require",
"version": "1.0.0",
"description": "A Nashorn implementation of CommonJS Modules/1.1.1",
"main": "src/nashorn-require.js",
"directories": {
"test": "test"
},
"scripts": {
"testBuild": "jar -cvf dist/package.JAR -C test-src/package . && jar -cvf dist/forcp.jar -C test-src/forcp .",
"test": "node tests/programs_spec.es6",
"build": "node_modules/.bin/tsc",
"lint": "node_modules/.bin/tslint src/*.ts",
"pretest": "npm run lint && npm run testBuild",
"prelint": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/provegard/nashorn-require.git"
},
"keywords": [
"nashorn",
"require",
"commonjs"
],
"author": "Per Rovegard <per@rovegard.se>",
"license": "MIT",
"bugs": {
"url": "https://github.com/provegard/nashorn-require/issues"
},
"homepage": "https://github.com/provegard/nashorn-require#readme",
"devDependencies": {
"jake": "^8.0.12",
"jake-jshint": "0.0.4",
"tslint": "^3.6.0",
"typescript": "^1.8.9"
}
}