forked from wanadev/obsidian-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.29 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
{
"name": "obsidian-core",
"version": "1.0.0",
"description": "Obsidian Framework core libraries",
"main": "index.js",
"scripts": {
"test": "grunt test"
},
"keywords": [
"obsidian"
],
"author": "Wanadev <http://www.wanadev.fr/>",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/wanadev/obsidian-core.git"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
]
]
},
"dependencies": {
"abitbol": "^2.0.0",
"lodash": "^4.17.5",
"raven-js": "^3.24.2",
"uuid": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"babelify": "^10.0.0",
"expect.js": "^0.3.1",
"grunt": "^1.0.2",
"grunt-browserify": "^5.3.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^2.0.0",
"grunt-contrib-yuidoc": "^1.0.0",
"grunt-mocha-phantomjs": "^4.0.0",
"mocha": "^5.1.1"
}
}