-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.73 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.73 KB
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
{
"name": "TaskTestcaseTemplate",
"version": "1.0.0",
"description": "Create templates for tasks and test cases to apply to multiple user stories.",
"keywords": [
"webpack",
"targetprocess",
"mashup"
],
"author": "Aliaksei Shytkin <shitkin@targetprocess.com>",
"scripts": {
"test": "eslint . --quiet",
"start": "outputPath=$TARGETPROCESS_MASHUPS_PATH/$npm_package_name; rm -rf $outputPath && NODE_ENV=development webpack --watch --output-path $outputPath",
"build-production": "webpack --output-path build --config webpack-production.config.js && mv build/index.js build/release.js",
"build-library": "rm -rf build/library && webpack --output-path build/library --config webpack-library.config.js && cp docs/README.md build/library/README.mkd && cp docs/*.png build/library",
"build": "npm run build-production && npm run build-library"
},
"license": {
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
},
"devDependencies": {
"babel-core": "^6.1.20",
"babel-eslint": "^4.1.5",
"babel-loader": "^6.1.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"combine-assets-plugin": "targetprocess/combine-assets-plugin",
"css-loader": "^0.14.5",
"eslint": "^1.9.0",
"eslint-plugin-react": "^3.8.0",
"file-loader": "^0.8.4",
"style-loader": "^0.12.3",
"targetprocess-mashup-config-loader": "targetprocess/targetprocess-mashup-config-loader",
"targetprocess-mashup-manifest-loader": "targetprocess/targetprocess-mashup-manifest-loader",
"targetprocess-mashup-webpack-plugin": "targetprocess/targetprocess-mashup-webpack-plugin",
"webpack": "^1.9.10"
},
"dependencies": {}
}