-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
105 lines (105 loc) · 2.78 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "mag.js",
"sideEffects": false,
"version": "1.10.4",
"description": "Intuitive, tiny, fast, JavaScript 2 HTML component templating library",
"main": "dist/mag-stateless.hooks.min.js",
"unpkg": "dist/mag-stateless.hooks.min.js",
"directories": {
"example": "examples",
"test": "tests"
},
"files": [
"dist",
"lib",
"!dist/index.html"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "webpack --config config/webpack.prod.config",
"prepublishOnly": "webpack --config config/webpack.prod.config",
"start": "webpack-dev-server --config config/webpack.dev.config.js",
"prepare": "npm run build",
"format": "prettier --write 'src/**/*.{js,scss}'",
"lint": "eslint --quiet src --ext .js",
"test": "jest",
"verify": "npm-run-all format lint",
"verify-save": "npm-run-all format lint test"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"repository": {
"type": "git",
"url": "git+https://github.com/magnumjs/mag.js.git"
},
"keywords": [
"javascript-library",
"magjs",
"javascript",
"framework",
"templating",
"prototyping",
"dom-element",
"mag",
"dom-manipulation",
"dom-binding",
"user-interface",
"html",
"web",
"modular",
"component",
"reactive",
"observable",
"stateless",
"state-management",
"dom"
],
"author": "https://github.com/magnumjs",
"license": "MIT",
"bugs": {
"url": "https://github.com/magnumjs/mag.js/issues"
},
"homepage": "https://github.com/magnumjs/mag.js#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.4",
"babel-plugin-dynamic-import-node": "^2.2.0",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.2.0",
"eslint": "^5.13.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-html": "^5.0.3",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"jest": "^24.1.0",
"mutationobserver-shim": "^0.3.3",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"webpack": "^4.22.0",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.1.4"
},
"husky": {
"hooks": {
"pre-push": "npm run verify"
}
}
}