-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.46 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
58
{
"name": "obsidian-core",
"version": "1.4.2",
"description": "Obsidian Framework core libraries",
"main": "index.js",
"types": "types/index.d.ts",
"typesVersions": {
"*": {
"lib/*": ["types/lib/*"],
"helpers/*": ["types/helpers/*"]
}
},
"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": {
"@sentry/browser": "^7.51.0",
"abitbol": "^2.1.1",
"lodash": "^4.17.21",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"babelify": "^10.0.0",
"expect.js": "^0.3.1",
"grunt": "^1.6.1",
"grunt-browserify": "^6.0.0",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-yuidoc": "^1.0.0",
"grunt-shell": "^4.0.0",
"mocha": "^10.2.0",
"mocha-headless-chrome": "^4.0.0"
}
}