UNPKG

2.77 kBJSONView Raw
1{
2 "name": "30s",
3 "version": "1.5.11",
4 "description": "A command-line application for 30 seconds of code snippets",
5 "author": "Oskar Grunning <oskargrunning@gmail.com>",
6 "license": "CC0-1.0",
7 "homepage": "https://github.com/sQVe/30s#30s",
8 "repository": "github:sQVe/30s",
9 "bugs": "https://github.com/sQVe/30s/issues",
10 "keywords": [
11 "javascript",
12 "snippets",
13 "cli"
14 ],
15 "scripts": {
16 "build": "npm run clean && npm run build:snippets && npm run move:snippets && npm run build:cjs",
17 "build:cjs": "BUILD_BUNDLE=cjs rollup -c",
18 "build:snippets": "BUILD_BUNDLE=snippets rollup -c && node .tmp/parser.js",
19 "move:snippets": "mkdir -p lib && mv .tmp/snippets.json lib/",
20 "clean": "rm -rf {.tmp,coverage,lib}",
21 "format": "prettier --write '{**/*,*}.{js,json,jsx,md,yaml}' && eslint --fix '{**/*,*}.{js,jsx}'",
22 "lint": "eslint '{**/*,*}.{js,jsx}'",
23 "prepublishOnly": "npm run build",
24 "test": "jest",
25 "test:coverage": "jest --coverage",
26 "test:coverage:upload": "jest --coverage && codecov",
27 "test:integration": "jest --testPathIgnorePatterns --testPathPattern test/integration/*",
28 "test:watch": "jest --watch --onlyChanged"
29 },
30 "engines": {
31 "node": ">= 8"
32 },
33 "bin": {
34 "30s": "./lib/30s.js"
35 },
36 "main": "lib/30s.js",
37 "files": [
38 "lib/"
39 ],
40 "devDependencies": {
41 "@babel/cli": "~7.11.0",
42 "@babel/core": "~7.11.0",
43 "@babel/plugin-transform-runtime": "~7.11.0",
44 "@babel/preset-env": "~7.11.0",
45 "@rollup/plugin-commonjs": "~15.0.0",
46 "@rollup/plugin-json": "~4.1.0",
47 "@rollup/plugin-node-resolve": "~9.0.0",
48 "@semantic-release/changelog": "~5.0.0",
49 "@semantic-release/git": "~9.0.0",
50 "@types/jest": "^26.0.0",
51 "@types/node": "^14.0.0",
52 "@types/ramda": "^0.27.0",
53 "babel-core": "7.0.0-bridge.0",
54 "babel-eslint": "~10.1.0",
55 "babel-jest": "~26.3.0",
56 "babel-plugin-ramda": "~2.0.0",
57 "codecov": "~3.7.0",
58 "eslint": "~7.8.0",
59 "eslint-config-sqve": "~2.10.0",
60 "eslint-plugin-fp": "^2.3.0",
61 "eslint-plugin-import": "^2.20.0",
62 "eslint-plugin-node": "^11.0.0",
63 "eslint-plugin-promise": "^4.2.0",
64 "eslint-plugin-react": "^7.18.0",
65 "eslint-plugin-standard": "^4.0.0",
66 "husky": "~4.3.0",
67 "jest": "~26.4.0",
68 "lint-staged": "~10.3.0",
69 "prettier": "~2.1.0",
70 "rollup": "~2.26.0",
71 "rollup-plugin-add-shebang": "~0.3.0",
72 "rollup-plugin-babel": "~4.4.0",
73 "semantic-release": "~17.1.0"
74 },
75 "dependencies": {
76 "@babel/runtime": "~7.11.0",
77 "chalk": "~4.1.0",
78 "cli-highlight": "~2.1.0",
79 "clipboardy": "~2.3.0",
80 "commander": "~6.1.0",
81 "core-js": "~3.6.0",
82 "marked": "~1.1.0",
83 "marked-terminal": "~4.1.0",
84 "ramda": "~0.27.0"
85 }
86}