forked from Lundalogik/LimeBootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@limetech/lime-bootstrap",
"version": "2.0.0-rc.1",
"description": "",
"main": "src/liblbs.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "jest",
"build": "brunch build",
"watch": "brunch watch -s",
"docs": "mkdocs serve",
"publish-docs": "mkdocs gh-deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lundalogik/LimeBootstrap.git"
},
"keywords": [],
"author": "Lime Technologies AB",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lundalogik/LimeBootstrap/issues"
},
"homepage": "https://github.com/Lundalogik/LimeBootstrap#readme",
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"babel-brunch": "^7.0.1",
"babel-jest": "^24.9.0",
"babel-preset-env": "^1.7.0",
"brunch": "^3.0.0",
"eslint": "^6.3.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^22.21.0",
"express": "^4.17.1",
"jest": "^24.9.0",
"jest-fetch-mock": "^3.0.3",
"raw-brunch": "^1.0.2",
"sass-brunch": "^3.0.0",
"uglify-js-brunch": "^2.10.0"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"bootstrap3": "^3.3.5",
"core-js": "^2.6.11",
"daemonite-material": "^4.1.1",
"jquery": "^3.5.1",
"js-cookie": "^2.2.1",
"knockout": "^3.5.1",
"knockout-mapping": "^2.6.0",
"knockout-punches": "^0.5.1",
"moment": "^2.29.1",
"pickadate": "^5.0.0-alpha.3",
"underscore": "^1.11.0",
"xml2json-light": "^1.0.6"
},
"jest": {
"testURL": "https://www.lime-bootstrap.com/lbs.html?apait=company",
"setupFiles": [
"./jest.init.js"
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"assets": [
{
"path": "LBS.zip",
"label": "LBS"
}
]
}
]
]
}
}