-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 868 Bytes
/
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
{
"name": "light-js",
"description": "Micro JS 'framework/library' made using ES6 features, used for making dynamic web apps easy to develop and maintain,not aimed for big dynamic apps, and not compatible with old browsers (ES6 compatibility it's a requirement)",
"main": "light-JS.js",
"scripts": {
"lint": "eslint \"src/**/*.js\" ",
"fix-lint": "eslint --fix \"src/**/*.js\" "
},
"keywords": [
"Micro JS library"
],
"author": "David Baqueiro",
"license": "MIT",
"bugs": {
"url": "https://github.com/bakeiro/light-JS/issues"
},
"homepage": "https://github.com/bakeiro/light-JS",
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
}
}