-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.8 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
{
"name": "stylewars",
"type": "module",
"version": "2.4.0",
"description": "A tiny CSS in JS library that requires no tooling",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.esm.js",
"exports": {
"import": "./dist/bundle.esm.js",
"require": "./dist/bundle.cjs.js"
},
"scripts": {
"test": "mocha",
"lint": "eslint '**/*.{js,mjs}' && prettier --check '**/*.{js,mjs,md,json}'",
"format": "prettier --write **/*.{md,js,mjs,json}",
"build": "rollup -c rollup.config.js",
"preversion": "npm run lint && npm run test",
"prepublishOnly": "npm run build",
"version": "offline-github-changelog --next=${npm_package_version} > CHANGELOG.md && git add CHANGELOG.md",
"start": "serve example",
"example:deploy": "surge example stylewars.surge.sh"
},
"keywords": [
"css",
"css-in-js",
"styles"
],
"author": "Sune Simonsen",
"license": "MIT",
"bugs": "https://github.com/sunesimonsen/stylewars/issues",
"repository": {
"type": "git",
"url": "https://github.com/sunesimonsen/stylewars"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"jsdom": "^19.0.0",
"magicpen-prism": "^5.0.0",
"mocha": "^10.0.0",
"mocha-dominate": "^2.0.0",
"offline-github-changelog": "^3.0.1",
"prettier": "^3.0.0",
"rollup": "^2.55.1",
"rollup-plugin-terser": "^7.0.2",
"serve": "^14.1.2",
"surge": "^0.23.1",
"unexpected": "^13.0.1",
"unexpected-dom": "^6.0.0",
"unexpected-prism": "^0.1.0",
"unexpected-snapshot": "^2.1.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=12"
}
}