diff options
author | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-03-01 21:54:41 +0100 |
---|---|---|
committer | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-03-01 21:54:41 +0100 |
commit | 6c8128f9fd5a5d0be115806c35a21b3d683df8d6 (patch) | |
tree | f46c2f6b3b9b294ff32bd75c08ccdc9e7a8cc4ef /sandbox/testAppNevena/Front/node_modules/magic-string/package.json | |
parent | 2400b84e95913665da6279114168148444b8f9ab (diff) | |
parent | 7d3640f824f46490b47bd95f1c5a16644f712068 (diff) |
Merge branch 'dev' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into logo
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/magic-string/package.json')
-rw-r--r-- | sandbox/testAppNevena/Front/node_modules/magic-string/package.json | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/magic-string/package.json b/sandbox/testAppNevena/Front/node_modules/magic-string/package.json new file mode 100644 index 00000000..7730e50e --- /dev/null +++ b/sandbox/testAppNevena/Front/node_modules/magic-string/package.json @@ -0,0 +1,48 @@ +{ + "name": "magic-string", + "description": "Modify strings, generate sourcemaps", + "author": "Rich Harris", + "version": "0.25.7", + "repository": "https://github.com/rich-harris/magic-string", + "main": "dist/magic-string.cjs.js", + "module": "dist/magic-string.es.js", + "jsnext:main": "dist/magic-string.es.js", + "typings": "index.d.ts", + "license": "MIT", + "dependencies": { + "sourcemap-codec": "^1.4.4" + }, + "devDependencies": { + "eslint": "^5.16.0", + "mocha": "^5.2.0", + "prettier": "^1.18.2", + "rollup": "^1.16.3", + "rollup-plugin-buble": "^0.19.6", + "rollup-plugin-node-resolve": "^5.2.0", + "rollup-plugin-replace": "^2.2.0", + "source-map": "^0.6.1", + "source-map-support": "^0.5.12" + }, + "keywords": [ + "string", + "string manipulation", + "sourcemap", + "templating", + "transpilation" + ], + "scripts": { + "test": "mocha", + "pretest": "npm run lint && npm run build", + "format": "prettier --single-quote --print-width 100 --use-tabs --write src/*.js src/**/*.js", + "build": "rollup -c", + "prepare": "npm run build", + "prepublishOnly": "rm -rf dist && npm test", + "lint": "eslint src test", + "watch": "rollup -cw" + }, + "files": [ + "dist/*", + "index.d.ts", + "README.md" + ] +} |