-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.4 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
{
"name": "@onenexus/squery",
"version": "1.0.0-beta.7",
"description": "Interact with Synergy modules/BEM DOM elements",
"license": "MIT",
"main": "dist/squery.js",
"author": "(Edmund Reed)[http://twitter.com/esr360] <[email protected]>",
"homepage": "https://github.com/One-Nexus/sQuery",
"keywords": [
"javascript",
"js",
"DOM",
"BEM",
"Synergy",
"modules",
"components",
"front-end",
"framework",
"web",
"ui"
],
"bugs": {
"url": "https://github.com/One-Nexus/sQuery/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/One-Nexus/sQuery.git"
},
"dependencies": {
"deep-extend": "^0.5.1"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"eslint": "^4.14.0",
"jsdoc": "^3.5.5",
"jsdom": "^12.2.0",
"jsdom-global": "^3.0.2",
"mocha": "^3.5.3",
"nyc": "^13.1.0",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1"
},
"scripts": {
"lint": "eslint './src/**/*.js'",
"test": "nyc --require @babel/register mocha test/tests.js --require @babel/register && nyc report --reporter=lcov",
"docs": "jsdoc src -r -d docs/js",
"js": "webpack",
"build": "npm run lint && npm test && npm run docs && npm run js"
}
}