-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.39 KB
/
package.json
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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "toml-patch",
"version": "0.2.3",
"author": "Tim Hall <tim.hall.engr@gmail.com>",
"license": "MIT",
"description": "Patch, parse, and stringify TOML",
"homepage": "https://github.com/timhall/toml-patch",
"keywords": [
"toml",
"patch",
"parse",
"stringify",
"parser",
"encoder",
"decoder"
],
"main": "dist/toml-patch.cjs.min.js",
"module": "dist/toml-patch.es.js",
"browser": "dist/toml-patch.umd.min.js",
"types": "dist/toml-patch.d.ts",
"scripts": {
"test": "jest",
"typecheck": "tsc",
"specs": "jest --config specs.config.js",
"benchmark": "node benchmark/index.js",
"build": "rimraf dist && rollup -c",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/glob": "^7",
"@types/jest": "^24",
"@types/js-yaml": "^3",
"benchmark": "^2",
"glob": "^7",
"jest": "^24",
"js-yaml": "^3",
"mri": "^1",
"npm-run-all": "^4",
"rimraf": "^2",
"rollup": "^1",
"rollup-plugin-dts": "^0.14",
"rollup-plugin-filesize": "^6",
"rollup-plugin-terser": "^4",
"rollup-plugin-typescript": "^1",
"ts-jest": "^24",
"tslib": "^1",
"typescript": "^3"
},
"jest": {
"testEnvironment": "node",
"preset": "ts-jest",
"testRegex": "/__tests__/.*\\.[jt]sx?$"
},
"prettier": {
"singleQuote": true,
"printWidth": 100
},
"files": [
"dist/"
]
}