-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.19 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
{
"author": "Dr. Kibitz <info@drkibitz.com>",
"bugs": "https://github.com/drkibitz/qi-nodes/issues",
"devDependencies": {
"coveralls": "*",
"gulp": "^3.9.1",
"gulp-jshint": "^2.0.4",
"gulp-uglify": "^2.1.0",
"ink-docstrap": "^1.3.0",
"istanbul": "*",
"jsdoc": "^3.4.3",
"jshint": "*",
"jshint-stylish": "^2.2.1",
"map-stream": "0.0.6",
"mocha": "*"
},
"description": "Base implementation for composite patterns in JavaScript.",
"files": [
"index.js"
],
"homepage": "http://drkibitz.github.io/qi-nodes/",
"keywords": [
"qi",
"nodes",
"composite",
"patterns",
"hierarchical",
"linked",
"list"
],
"license": "MIT",
"name": "qi-nodes",
"repository": "https://github.com/drkibitz/qi-nodes",
"scripts": {
"jshint": "gulp jshint",
"test": "istanbul cover _mocha --require './test/source' test/**/*.test.js",
"coveralls": "cat ./build/coverage/lcov.info | coveralls",
"test-dist": "gulp && mocha --require './test/dist' test/**/*.test.js",
"docs": "jsdoc -c jsdoc.conf.json && git checkout gh-pages && rm -fR ./api && mkdir ./api && mv ./docs/*/* ./api/latest && rm -fR ./docs"
},
"version": "1.0.1"
}