-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.05 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
{
"name": "sam",
"version": "1.0.0",
"description": "A JavaScript library for Self-Adapting Web Menus.",
"homepage": "https://github.com/aalto-ui/sam#readme",
"main": "build/lib/index.js",
"types": "build/lib/index.d.ts",
"private": true,
"bugs": {
"url": "https://github.com/aalto-ui/sam/issues"
},
"author": "Daru13",
"repository": {
"type": "git",
"url": "git+https://github.com/aalto-ui/sam.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"jquery": "^3.3.1"
},
"devDependencies": {
"@types/jquery": "3.3.29",
"browserify": "^16.2.3",
"browserify-shim": "^3.8.14",
"grunt": "^1.0.3",
"grunt-browserify": "^5.3.0",
"grunt-contrib-uglify-es": "^3.3.0",
"grunt-exec": "^3.0.0",
"grunt-ts": "^6.0.0-beta.22",
"grunt-typedoc": "^0.2.4",
"typedoc": "^0.14.2",
"typedoc-plugin-external-module-name": "^2.0.0",
"typescript": "^3.3.3333",
"uglify-es": "^3.3.9"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"jquery": "global:jQuery"
}
}