This repository has been archived by the owner on Sep 2, 2022. It is now read-only.
forked from robertkowalski/mgnl-calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (52 loc) · 1.54 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
{
"name": "calculator-magnolia",
"version": "0.0.4",
"description": "Simple configurable calculator, ie for interest or mortgage calculation - Component template for Magnolia CMS (Demonstrates how to test light modules)",
"main": "webresources/bundle.js",
"scripts": {
"test": "npm run unit && npm run integration",
"unit": "jest",
"integration": "mocha ./_dev/test/integration/cheerio.js",
"build": "webpack --config=webpack.config.js",
"watch": "npm run build -- --watch",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/magnolia-cms/calculator-magnolia.git"
},
"keywords": [
"magnolia-light-module",
"magnolia-component",
"testing",
"test"
],
"contributors": [
"Magnolia (https://magnolia-cms.com/)",
"Robert Kowalski <rok@kowalski.gd>"
],
"license": "MIT",
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.3.2",
"babel-preset-airbnb": "^2.2.3",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"cheerio": "^0.22.0",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^2.0.0",
"jest": "^18.1.0",
"jquery": "^3.1.1",
"less": "^2.7.2",
"less-loader": "^2.2.3",
"mocha": "^3.2.0",
"request": "^2.79.0",
"style-loader": "^0.13.1",
"webpack": "^2.2.1"
},
"bugs": {
"url": "https://github.com/magnolia-cms/calculator-magnolia/issues"
},
"homepage": "https://github.com/magnolia-cms/calculator-magnolia#readme"
}