-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.36 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.36 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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "node-needle",
"version": "0.1.9",
"description": "A standalone extensive data structure library in JavaScript.",
"main": "src/needle.js",
"scripts": {
"build": "gulp",
"dev": "gulp && gulp watch || true",
"examples": "node ./examples/app.js || true",
"dev": "gulp && gulp watch || true",
"bench": "node --harmony benchmarks/runTests.js || true",
"unit": "node --harmony unit/runTests.js || true",
"lint": "./node_modules/.bin/eslint src/*.js || true",
"gyp": "node-gyp configure build && gulp patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nickzuber/needle.git"
},
"author": "Nick Zuber <zuber.nicholas@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nickzuber/needle/issues"
},
"keywords": [
"needle",
"data structures",
"data structure",
"data",
"structure",
"structures",
"javascript",
"library"
],
"homepage": "https://github.com/nickzuber/needle#readme",
"dependencies": {
"eslint": "^3.3.0"
},
"devDependencies": {
"bindings": "^1.2.1",
"express": "^4.13.3",
"gulp": "^3.9.0",
"gulp-browserify": "^0.5.1",
"gulp-header": "^1.7.1",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.5.1",
"gulp-watch": "^4.3.5",
"nan": "^2.2.1",
"tape": "^4.2.2",
"winston": "^2.2.0"
}
}