-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.7 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
{
"name": "object-maker",
"version": "1.1.0",
"author": {
"name": "borvelt",
"email": "borvelt@gmail.com"
},
"license": "MIT",
"repository": "https://github.com/borvelt/object-maker.git",
"description": "create object with string",
"main": "dist/index.js",
"module": "src/index.js",
"scripts": {
"clean": "rm -rf web dist",
"lint": "./node_modules/eslint/bin/eslint.js . --cache",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"dev": "npm run lint && webpack-dev-server --open --config webpack.config/dev.js",
"web": "npm run lint && webpack --config webpack.config/web.js",
"dist": "npm run lint && webpack --config webpack.config/dist.js",
"test": "jest --no-cache"
},
"pre-commit": {
"run": [
"precommit-msg",
"lint"
]
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
}
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/runtime": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.2",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^1.0.0",
"eslint": "^5.6.0",
"eslint-plugin-jest": "^21.22.1",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^21.1.0",
"lodash.mergewith": "^4.6.1",
"pre-commit": "^1.2.2",
"style-loader": "^0.23.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"url-loader": "^1.1.1",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.8"
}
}