|
1 | 1 | { |
2 | 2 | "name": "magic-string", |
3 | | - "description": "Modify strings, generate sourcemaps", |
4 | | - "author": "Rich Harris", |
5 | 3 | "version": "0.25.8", |
| 4 | + "description": "Modify strings, generate sourcemaps", |
| 5 | + "keywords": [ |
| 6 | + "string", |
| 7 | + "string manipulation", |
| 8 | + "sourcemap", |
| 9 | + "templating", |
| 10 | + "transpilation" |
| 11 | + ], |
6 | 12 | "repository": "https://github.com/rich-harris/magic-string", |
| 13 | + "license": "MIT", |
| 14 | + "author": "Rich Harris", |
7 | 15 | "main": "dist/magic-string.cjs.js", |
8 | 16 | "module": "dist/magic-string.es.js", |
9 | 17 | "jsnext:main": "dist/magic-string.es.js", |
10 | 18 | "typings": "index.d.ts", |
11 | | - "license": "MIT", |
| 19 | + "files": [ |
| 20 | + "dist/*", |
| 21 | + "index.d.ts", |
| 22 | + "README.md" |
| 23 | + ], |
| 24 | + "scripts": { |
| 25 | + "build": "rollup -c", |
| 26 | + "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s", |
| 27 | + "format": "prettier --single-quote --print-width 100 --use-tabs --write src/*.js src/**/*.js", |
| 28 | + "lint": "eslint src test", |
| 29 | + "prepare": "npm run build", |
| 30 | + "prepublishOnly": "rm -rf dist && npm test", |
| 31 | + "release": "bumpp -x \"npm run changelog\" --all --commit --tag --push && npm publish", |
| 32 | + "pretest": "npm run lint && npm run build", |
| 33 | + "test": "mocha", |
| 34 | + "watch": "rollup -cw" |
| 35 | + }, |
12 | 36 | "dependencies": { |
13 | 37 | "sourcemap-codec": "^1.4.8" |
14 | 38 | }, |
|
24 | 48 | "rollup": "^2.69.0", |
25 | 49 | "source-map": "^0.6.1", |
26 | 50 | "source-map-support": "^0.5.21" |
27 | | - }, |
28 | | - "keywords": [ |
29 | | - "string", |
30 | | - "string manipulation", |
31 | | - "sourcemap", |
32 | | - "templating", |
33 | | - "transpilation" |
34 | | - ], |
35 | | - "scripts": { |
36 | | - "test": "mocha", |
37 | | - "pretest": "npm run lint && npm run build", |
38 | | - "format": "prettier --single-quote --print-width 100 --use-tabs --write src/*.js src/**/*.js", |
39 | | - "build": "rollup -c", |
40 | | - "prepare": "npm run build", |
41 | | - "prepublishOnly": "rm -rf dist && npm test", |
42 | | - "lint": "eslint src test", |
43 | | - "watch": "rollup -cw", |
44 | | - "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s", |
45 | | - "release": "bumpp -x \"npm run changelog\" --all --commit --tag --push && npm publish" |
46 | | - }, |
47 | | - "files": [ |
48 | | - "dist/*", |
49 | | - "index.d.ts", |
50 | | - "README.md" |
51 | | - ] |
| 51 | + } |
52 | 52 | } |
0 commit comments