-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.13 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
{
"name": "HakeJS",
"version": "0.0.1",
"description": "Produce universal library with webpack and es6",
"main": "lib/Hake.min.js",
"scripts": {
"build": "webpack --env=build --progress --profile --colors",
"dev": "webpack --progress --colors --watch --mode=dev",
"test": "mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js",
"lint": " eslint --fix src/*"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "6.24.1",
"chai": "4.1.1",
"eslint": "4.4.1",
"eslint-loader": "1.9.0",
"mocha": "3.5.0",
"webpack": "3.5.2"
},
"repository": {
"type": "git",
"url": "https://github.com/krasimir/webpack-library-starter.git"
},
"keywords": [
"webpack",
"es6",
"starter",
"library",
"universal",
"umd",
"commonjs"
],
"author": "Dominic Ming",
"license": "MIT",
"bugs": {
"url": "https://github.com/mxz96102/HakeJS/"
},
"homepage": "https://github.com/mxz96102/HakeJS/"
}