-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.02 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
40
41
{
"name": "operator-overloading",
"version": "0.5.1",
"description": "Simple Operator overloading library for Javascript!",
"main": "./lib/overload.js",
"devDependencies": {
"gulp": "^3.8.10",
"gulp-browserify": "^0.5.0",
"gulp-clean": "^0.3.1",
"gulp-jshint": "^1.9.0",
"gulp-rename": "^1.2.0",
"gulp-size": "^1.1.0",
"gulp-uglify": "^1.0.1",
"jshint-stylish": "^1.0.0",
"mocha": "^2.0.1",
"require-dir": "^0.1.0"
},
"scripts": {
"test": "./node_modules/.bin/mocha ./test"
},
"repository": {
"type": "git",
"url": "git@github.com:kushal-likhi/operator-overloading-js.git"
},
"keywords": [
"javascript",
"operator",
"overloading",
"poc"
],
"author": "Kushal Likhi <kushal.likhi@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/kushal-likhi/operator-overloading-js/issues"
},
"homepage": "https://github.com/kushal-likhi/operator-overloading-js",
"dependencies": {
"escodegen": "^1.4.1",
"esprima": "^1.2.2"
}
}