File tree Expand file tree Collapse file tree 4 files changed +48
-1
lines changed Expand file tree Collapse file tree 4 files changed +48
-1
lines changed Original file line number Diff line number Diff line change 9
9
node_modules
10
10
.idea
11
11
docs /build
12
- /lib
13
12
.npmrc
Original file line number Diff line number Diff line change
1
+ docs /
1
2
src /
2
3
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
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ Find detailed docs at [alpha.neohq.net](http://alpha.neohq.net/docs/javascript-d
8
8
9
9
``` shell
10
10
npm install neo4j-driver
11
+ // or
12
+ bower install neo4j-driver
11
13
```
12
14
13
15
``` javascript
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments