-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.34 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
43
44
45
46
47
{
"name": "giraffe",
"version": "2.1.1",
"description": "Lightweight Graph DB implementation",
"main": "dist/bundle.js",
"scripts": {
"prepublish": "rollup -c && MIN=true rollup -c",
"build": "rollup -c",
"pretest": "eslint src/",
"test": "mocha --compilers js:babel-register --recursive src/",
"test:watch": "mocha --compilers js:babel-register --watch --reporter min --recursive src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tbremer/Giraffe.git"
},
"keywords": [
"graph",
"database"
],
"author": "Tom Bremer <tom@tbremer.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tbremer/Giraffe/issues"
},
"homepage": "https://github.com/tbremer/Giraffe#readme",
"pre-commit": [
"test"
],
"devDependencies": {
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-register": "^6.18.0",
"eslint": "^3.13.1",
"eslint-config-tbremer": "^1.2.1",
"expect": "^1.20.2",
"mocha": "^3.2.0",
"pre-commit": "^1.2.2",
"rollup": "^0.41.1",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^3.2.2"
}
}