-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 2.51 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
{
"name": "CustomUnitColoredCustomField",
"version": "1.3.2",
"description": "The mashup adds a new custom unit to the Customize Cards tab in a View Setup area, based on a custom field that needs to be specified in the mashup code. The values of that custom field are mapped to colors in the mashup code, which will the be used to color the values on the cards.",
"keywords": [
"webpack",
"targetprocess",
"mashup"
],
"scripts": {
"start": "node scripts/startWatcher.js",
"build:development": "shx rm -rf build/development && cross-env NODE_ENV=development webpack --config webpack/development.config.js --output-path build/development",
"build:library:docs": "shjs scripts/buildLibraryDocs.js",
"build:library": "shx rm -rf build/library && cross-env NODE_ENV=production webpack --config webpack/library.config.js --output-path build/library --progress && npm run build:library:docs",
"build:manager": "shx rm -rf build/manager && cross-env NODE_ENV=production webpack --config webpack/manager.config.js --output-path build/manager --progress && cd build/manager && shx cat mashup.config.js > tmp.js && shx echo >> tmp.js && shx cat index.js >> tmp.js && shx rm mashup.config.js index.js && shx mv tmp.js index.js",
"build:all": "npm run build:library && npm run build:manager",
"lint": "eslint ./src",
"version": "npm run build:all && git add -A build",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"autoprefixer": "^6.3.1",
"babel-core": "^6.23.1",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.2",
"babel-preset-es2015": "^6.3.13",
"cross-env": "^3.1.4",
"css-loader": "^0.23.1",
"eslint": "3.7.0",
"file-loader": "^0.8.5",
"html-loader": "^0.3.0",
"postcss-loader": "^0.8.0",
"raw-loader": "^0.5.1",
"shelljs": "^0.7.6",
"shx": "^0.2.2",
"style-loader": "^0.13.0",
"targetprocess-mashup-helper": "^1.0.3",
"targetprocess-mashup-webpack-plugin": "^1.0.0",
"tmp": "0.0.28",
"webpack": "^1.12.12"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/TargetProcess/CustomUnitColoredCustomFieldMashup.git"
},
"author": "Targetprocess <[email protected]>",
"license": "MIT",
"contributors": [
"Aliaksei Shytkin <[email protected]>"
],
"bugs": {
"url": "https://github.com/TargetProcess/CustomUnitColoredCustomFieldMashup/issues"
},
"homepage": "https://github.com/TargetProcess/CustomUnitColoredCustomFieldMashup#readme"
}