-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.61 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.61 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "js-utils",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --config jest.config.js",
"test:coveralls": "jest --config jest.config.js --coverageReporters=text-lcov | coveralls",
"lint:all": "lerna run lint --stream",
"test:all": "lerna run test --stream",
"build:all": "lerna run build --stream",
"doc:all": "lerna run doc --stream",
"doc:latest:all": "lerna run doc:latest --stream"
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/docomodigital/js-utils.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/docomodigital/js-utils/issues"
},
"homepage": "https://github.com/docomodigital/js-utils#readme",
"private": true,
"dependencies": {
"lerna": "^3.13.0",
"rollup": "^1.27.9"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-proposal-export-namespace-from": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@babel/runtime": "^7.7.4",
"@types/jest": "^24.0.6",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.5",
"coveralls": "^3.0.2",
"cross-env": "^6.0.0",
"css": "^2.2.4",
"detect-port-alt": "^1.1.6",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.16.0",
"file-loader": "^5.0.1",
"glob": "^7.1.3",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.1.0",
"jsdoc": "^3.5.5",
"lodash": "^4.17.11",
"minami": "^1.2.3",
"mini-css-extract-plugin": "^0.8.0",
"minimatch": "^3.0.4",
"rimraf": "^3.0.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-size-snapshot": "^0.10.0",
"rollup-plugin-terser": "^5.1.2",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"ts-jest": "^24.0.0",
"tslint": "^5.12.1",
"tslint-config-airbnb": "^5.11.1",
"tslint-loader": "^3.5.4",
"typedoc": "^0.15.0",
"typescript": "^3.3.3333",
"url-loader": "^3.0.0",
"webpack": "^4.38.0",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.1"
}
}