-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.34 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
{
"name": "stylus-lang-bundle",
"description": "Browser friendly version of Stylus Language",
"version": "0.64.0",
"author": "TJ Holowaychuk <tj@vision-media.ca>",
"homepage": "http://stylus-lang.com/",
"keywords": [
"css",
"parser",
"style",
"stylesheets",
"jade",
"language"
],
"unpkg": "dist/stylus-renderer.min.js",
"dependencies": {
"event-lite": "^0.1.2",
"path-browserify": "^1.0.1",
"stylus": "0.64.0",
"tiny-sha1": "^0.2.1"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-node-resolve": "^16.0.0",
"decompress": "^4.2.1",
"glob": "^10.4.5",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.79.2",
"rollup-plugin-cjs-es": "^1.1.0",
"rollup-plugin-external-globals": "^0.13.0",
"rollup-plugin-inline-js": "^0.5.0",
"rollup-plugin-re": "^1.0.7",
"rollup-plugin-terser": "^7.0.2"
},
"scripts": {
"ci": "run-p build build:tests && npm test",
"test": "mocha",
"build": "rollup -c",
"build:tests": "node build-test-cases.mjs",
"preversion": "npm test",
"version": "npm run build && git add .",
"postversion": "git push --follow-tags && npm publish"
},
"repository": "openstyles/stylus-lang-bundle",
"license": "MIT",
"files": [
"dist"
],
"engines": {
"node": ">=18"
}
}