Skip to content

Commit de2faf1

Browse files
committed
chore: sort package.json
1 parent d642aae commit de2faf1

2 files changed

Lines changed: 28 additions & 37 deletions

File tree

appveyor.yml

Lines changed: 0 additions & 9 deletions
This file was deleted.

package.json

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,38 @@
11
{
22
"name": "magic-string",
3-
"description": "Modify strings, generate sourcemaps",
4-
"author": "Rich Harris",
53
"version": "0.25.8",
4+
"description": "Modify strings, generate sourcemaps",
5+
"keywords": [
6+
"string",
7+
"string manipulation",
8+
"sourcemap",
9+
"templating",
10+
"transpilation"
11+
],
612
"repository": "https://github.com/rich-harris/magic-string",
13+
"license": "MIT",
14+
"author": "Rich Harris",
715
"main": "dist/magic-string.cjs.js",
816
"module": "dist/magic-string.es.js",
917
"jsnext:main": "dist/magic-string.es.js",
1018
"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+
},
1236
"dependencies": {
1337
"sourcemap-codec": "^1.4.8"
1438
},
@@ -24,29 +48,5 @@
2448
"rollup": "^2.69.0",
2549
"source-map": "^0.6.1",
2650
"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+
}
5252
}

0 commit comments

Comments
 (0)