This repository was archived by the owner on Mar 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.24 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.24 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@docomodigital/js-platform",
"version": "1.0.1",
"description": "",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"build": "rimraf ./dist && cross-env NODE_ENV=production webpack",
"doc": "rimraf ./docs/${npm_package_version} && jsdoc -c .jsdoc.json -d ./docs/${npm_package_version}/",
"doc:latest": "rimraf ./docs/latest && jsdoc -c .jsdoc.json -d ./docs/latest/",
"doc:open": "npm run doc && open docs/${npm_package_version}/index.html",
"lint": "eslint \"src/**\"",
"start": "cross-env NODE_ENV=development webpack-dev-server --open",
"test": "jest --config jest.config.json",
"test:watch": "npm run test -- --watchAll",
"test:open": "npm run test && open coverage/lcov-report/index.html",
"test:coveralls": "npm run test -- --coverageReporters=text-lcov | coveralls",
"preversion": "npm run lint && npm run test",
"version": "npm run build && npm run doc && npm run doc:latest",
"postversion": "git add docs/ && git commit -am \"Documentation ${npm_package_version}\" && git push --follow-tags"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "7.1.5",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-decorators": "7.1.2",
"@babel/plugin-proposal-export-namespace-from": "7.0.0",
"@babel/plugin-syntax-dynamic-import": "7.0.0",
"@babel/plugin-transform-runtime": "7.1.0",
"@babel/polyfill": "7.0.0",
"@babel/preset-env": "7.1.5",
"@babel/register": "7.0.0",
"@babel/runtime": "7.1.5",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-loader": "8.0.4",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"css-loader": "^2.0.0",
"eslint": "^5.6.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"jsdoc": "^3.5.5",
"minami": "^1.2.3",
"mini-css-extract-plugin": "^0.5.0",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9",
"webpack-merge": "^4.1.4"
}
}