-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
71 lines (71 loc) · 2.07 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@xinix/xin",
"version": "2.7.4",
"description": "Web component for the web",
"repository": {
"type": "git",
"url": "https://github.com/xinix-technology/xin.git"
},
"author": "Ganesha <[email protected]> (http://sagara.id)",
"main": "index.js",
"keywords": [
"xin",
"SPA",
"Javascript",
"Framework",
"xinix"
],
"license": "MIT",
"homepage": "http://xinix.co.id/p/product/xin",
"scripts": {
"clean": "rm -rf dist docs coverage",
"dev": "karma start --no-single-run --browsers ChromeDebugging",
"lint": "eslint .",
"test": "karma start",
"build:dev": "webpack --mode development",
"build:prod": "webpack --mode production",
"build:esm": "webpack --mode production --env.esm=1",
"build": "npm run build:dev && npm run build:prod && npm run build:esm",
"prepublishOnly": "npm run clean && npm run lint && npm run test && npm run build"
},
"devDependencies": {
"@purtuga/esm-webpack-plugin": "^1.2.1",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-xinix": "^1.1.11",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.2.3",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.1",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "^1.0.0",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^4.0.2",
"mini-css-extract-plugin": "^0.9.0",
"mocha": "^7.1.0",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^2.3.5",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"debug": "^4.1.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}