-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.3 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
{
"name": "gelert",
"version": "2.0.0",
"description": "A simplistic permission system",
"main": "./build/gelert.js",
"files": [
"build",
"src",
"test"
],
"scripts": {
"build": "gulp build",
"test": "mocha ./test/main.js --compilers js:babel-core/register"
},
"author": "Kieron Wiltshire",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kieronwiltshire/node-gelert.git"
},
"bugs": {
"url": "https://github.com/kieronwiltshire/node-gelert/issues"
},
"homepage": "https://github.com/kieronwiltshire/node-gelert#readme",
"dependencies": {
"lodash": "^4.17.4",
"uuid": "^3.3.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.0.2",
"chai-uuid": "^1.0.6",
"fs-extra": "^3.0.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"mocha": "^3.4.2"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-runtime",
"transform-async-to-generator",
"transform-class-properties"
]
}
}