-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.55 KB
/
package.json
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
{
"name": "champoo",
"version": "0.3.2",
"description": "Lazy loading pretty much everything!",
"main": "index.js",
"homepage": "https://github.com/mawrkus/champoo.git",
"repository": {
"type": "git",
"url": "git@github.com:mawrkus/champoo.git"
},
"files": [
"es",
"lib",
"index.js"
],
"author": "mawrkus <web@sparring-partner.be>",
"license": "MIT",
"keywords": [
"lazy loader",
"lazy loading",
"lazy modules",
"lazy",
"conditioner"
],
"scripts": {
"tdd": "jest --watch --verbose",
"lint": "eslint es demo/index.js",
"pretest": "yarn run lint",
"test": "jest --coverage",
"prebuild": "yarn run test",
"build": "rm -rf lib && webpack",
"postbuild": "uglifyjs lib/Champoo.js --compress --mangle -o lib/Champoo.min.js",
"server:demo": "webpack-dev-server --open --port 3000 --config webpack.config.demo.js",
"prebuild:demo": "yarn run lint",
"build:demo": "webpack --progress --colors --display-modules --display-chunks --config webpack.config.demo.js",
"prerelease": "yarn run build && yarn version && git push --tags",
"release": "npm login && npm publish"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^21.0.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"eslint": "^4.6.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.0.0",
"jest": "^21.0.1",
"uglify-js": "^3.0.28",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
}
}