-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.47 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
48
49
50
51
52
53
54
55
56
57
{
"name": "relatedjs",
"version": "0.3.0",
"description": "Relationships for JavaScript objects",
"main": "dist",
"scripts": {
"test": "mocha --compilers js:babel-core/register test/*-test.js test/**/*-test.js",
"build": "grunt build",
"testBuild": "mocha build/test/*-test.js build/test/**/*-test.js",
"docs": "documentation --shallow --format md --output docs/api.md lib/*.js",
"dist": "grunt dist && npm run docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jameslk/relatedjs.git"
},
"keywords": [
"related",
"relatedjs",
"relationships",
"graph",
"schema"
],
"author": "James Koshigoe",
"license": "MIT",
"bugs": {
"url": "https://github.com/jameslk/relatedjs/issues"
},
"homepage": "https://github.com/jameslk/relatedjs#readme",
"devDependencies": {
"babel": "^6.0.15",
"babel-core": "^6.1.2",
"babel-plugin-transform-runtime": "^6.1.2",
"babel-polyfill": "^6.0.16",
"babel-preset-es2015": "^6.1.2",
"babelify": "^7.2.0",
"browserify-derequire": "^0.9.4",
"chai": "^3.2.0",
"documentation": "^3.0.3",
"grunt": "^0.4.5",
"grunt-browserify": "^4.0.1",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-copy": "^0.8.1",
"grunt-contrib-watch": "^0.6.1",
"load-grunt-tasks": "^3.2.0",
"mocha": "^2.3.2",
"sinon": "^1.16.1"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-runtime"
]
}
}