-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 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
{
"author": "Danil Semelenov",
"description": "Use CSS Modules as tagged templates in a browser and Node.js.",
"devDependencies": {
"eslint": "^5.13.0",
"postcss": "^7.0.14",
"postcss-modules-local-by-default": "^2.0.4",
"postcss-modules-parser": "^1.1.1",
"postcss-modules-scope": "^2.0.1",
"postcss-modules-values": "^2.0.0",
"prettier": "^1.16.4",
"rollup": "^1.1.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-virtual": "^1.0.1",
"source-map-explorer": "^1.6.0"
},
"homepage": "https://github.com/sgtpep/csstag",
"jsnext:main": "index.esm.min.js",
"keywords": [
"browser",
"css",
"css-modules",
"esm",
"postcss",
"tagged-template",
"tagged-template-literal",
"template-literal"
],
"license": "MIT",
"main": "index.cjs.min.js",
"module": "index.esm.min.js",
"name": "csstag",
"repository": "sgtpep/csstag",
"scripts": {
"build": "rollup -c",
"eslint": "eslint '**/*.js'",
"prepublishOnly": "rollup -c",
"prettier": "prettier --write '**/*.{css,html,js,json,md,yml}'",
"prettier:check": "npm run prettier -- -c --no-write",
"test": "npm run prettier:check && npm run eslint && npm run build && ./test"
},
"version": "0.3.5"
}