-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.45 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.45 KB
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
{
"name": "@onenexus/polymorph",
"version": "1.0.0-beta.5",
"description": "Style Synergy modules/BEM DOM elements using JavaScript",
"main": "dist/polymorph.js",
"author": "(Edmund Reed)[http://twitter.com/esr360] <esr360@live.com>",
"homepage": "https://github.com/One-Nexus/Polymorph",
"keywords": [
"javascript",
"js",
"DOM",
"BEM",
"Synergy",
"modules",
"components",
"front-end",
"framework",
"web",
"css",
"css-in-js",
"jss",
"ui"
],
"bugs": {
"url": "https://github.com/One-Nexus/Polymorph/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/One-Nexus/Polymorph.git"
},
"dependencies": {
"@onenexus/squery": "1.0.0-beta.7"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.4.2",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.5",
"eslint": "^4.14.0",
"jsdoc": "^3.5.5",
"jsdom": "^13.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^3.5.3",
"nyc": "^13.3.0",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1"
},
"scripts": {
"lint": "eslint './src/js/**/*.js'",
"test": "nyc mocha test/tests.js --require ./test/helper.js && 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"
}
}