Skip to content

Commit f056d4d

Browse files
committed
Merge pull request #35 from oskarhane/1.0-bower
Distribute via bower
2 parents 339846b + 3310bc7 commit f056d4d

File tree

4 files changed

+48
-1
lines changed

4 files changed

+48
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@ build
99
node_modules
1010
.idea
1111
docs/build
12-
/lib
1312
.npmrc

.npmignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
1+
docs/
12
src/
23
build/
4+
test/
5+
lib/browser/neo4j-web.test.js
6+
bower.json
7+
.gitignore
8+
esdoc.json
9+
gulpfile.js
10+
runTests.sh
11+
runTests.ps1

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ Find detailed docs at [alpha.neohq.net](http://alpha.neohq.net/docs/javascript-d
88

99
```shell
1010
npm install neo4j-driver
11+
// or
12+
bower install neo4j-driver
1113
```
1214

1315
```javascript

bower.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "neo4j-driver",
3+
"description": "Connect to Neo4j 3.0.0 and up from JavaScript",
4+
"main": "lib/browser/neo4j-web.min.js",
5+
"authors": [{
6+
"name": "Neo Technology Inc."
7+
}],
8+
"license": "Apache-2.0",
9+
"keywords": [
10+
"neo4j"
11+
],
12+
"moduleType": [
13+
"amd",
14+
"es6",
15+
"globals",
16+
"node"
17+
],
18+
"ignore": [
19+
"docs",
20+
"src",
21+
"test",
22+
"build",
23+
"node_modules",
24+
"lib/browser/neo4j-web.test.js",
25+
"package.json",
26+
".gitignore",
27+
".npmignore",
28+
"esdoc.json",
29+
"gulpfile.js",
30+
"runTests.sh",
31+
"runTests.ps1"
32+
],
33+
"repository": {
34+
"type": "git",
35+
"url": "https://github.com/neo4j/neo4j-javascript-driver.git"
36+
}
37+
}

0 commit comments

Comments
 (0)