-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
82 lines (82 loc) · 2.49 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
{
"name": "emma.css",
"version": "0.15.1",
"description": "Emma.css { emmet-like utility classes }",
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rimraf tmp/ scss/ && mkdirp tmp/",
"convert:data": "js-yaml src/emma-data.yml > tmp/emma-data.json",
"convert:schema": "js-yaml src/emma-schema.yml > tmp/emma-schema.json",
"validate:json": "ajv -s tmp/emma-schema.json -d tmp/emma-data.json",
"compile:json": "npm run convert:data && npm run convert:schema && npm run validate:json",
"format:ts": "prettier --write src/*.ts test/*.ts",
"compile:ts": "npm run format:ts && tsc",
"compile:js": "node tmp/index.js",
"format:scss": "prettier --write scss/**/*.scss",
"compile:scss": "sass --style=expanded --no-source-map ./scss/all.scss ./emma.css && npm run format:scss",
"compile": "npm run compile:json && npm run compile:ts && npm run compile:js && npm run compile:scss",
"test": "mocha --require espower-typescript/guess test/**/**.ts"
},
"author": "ruedap",
"license": "MIT",
"main": "emma.css",
"style": "emma.css",
"scss": "scss/all.scss",
"files": [
"scss",
"CHANGELOG.md",
"emma.css",
"LICENSE",
"README.md"
],
"homepage": "https://github.com/ruedap/emma.css",
"keywords": [
"sass",
"scss",
"css",
"emmet",
"utility",
"coding"
],
"bugs": {
"url": "https://github.com/ruedap/emma.scss/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/ruedap/emma.css.git"
},
"devDependencies": {
"@emmetio/css-abbreviation": "0.4.0",
"@emmetio/css-snippets-resolver": "0.4.0",
"@emmetio/output-profile": "0.1.5",
"@emmetio/snippets-registry": "0.3.1",
"@emmetio/stylesheet-formatters": "0.2.1",
"@types/fs-extra": "9.0.13",
"@types/js-yaml": "4.0.6",
"@types/lodash": "4.14.198",
"@types/mocha": "10.0.0",
"@types/node": "18.11.18",
"@types/power-assert": "1.5.4",
"@types/sinon": "10.0.16",
"ajv-cli": "5.0.0",
"babel": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-register": "6.26.0",
"espower-typescript": "10.0.1",
"fs-extra": "11.1.0",
"js-yaml": "4.1.0",
"lodash": "4.17.21",
"minimist": "1.2.8",
"mkdirp": "1.0.4",
"mocha": "10.0.0",
"postcss": "8.4.31",
"postcss-map": "0.11.0",
"power-assert": "1.6.1",
"prettier": "2.8.8",
"rimraf": "3.0.2",
"sass": "1.57.1",
"semver-regex": "3.1.4",
"sinon": "14.0.2",
"typescript": "4.8.4"
}
}