aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/magic-string/package.json
blob: 7730e50e7c8de79a2e0723960d2fc55d456f0559 (plain) (blame)
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
{
  "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"
  ]
}