-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.2 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.2 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
{
"name": "@onenexus/cell",
"version": "1.0.0-beta.21",
"description": "Style BEM DOM elements using Sass",
"main": "dist/_synergy.scss",
"author": "(Edmund Reed)[http://twitter.com/esr360] <esr360@live.com>",
"homepage": "https://github.com/One-Nexus/Cell",
"keywords": [
"sass",
"scss",
"OOCSS",
"BEM",
"modular",
"modules",
"components",
"front-end",
"framework",
"web",
"synergy"
],
"bugs": {
"url": "https://github.com/One-Nexus/Cell/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/One-Nexus/Cell.git"
},
"dependencies": {
"@onenexus/synergy-sass-importer": "^1.0.0-beta.9",
"Sass-Boost": "^1.1.0"
},
"devDependencies": {
"concat": "^1.0.3",
"mocha": "^6.2.2",
"node-sass": "^4.13.1",
"sass-true": "^5.0.0",
"sassdoc": "^2.5.0",
"sassdoc-theme-flippant": "^0.1.0",
"stylelint": "^8.4.0"
},
"scripts": {
"lint": "stylelint src/**/*.scss",
"test": "mocha test/tests.js",
"docs": "sassdoc src/ -d docs/sass --theme flippant",
"sass": "node ./build/sass-concat.js",
"build": "npm run lint && npm test && npm run docs && npm run sass"
}
}