This repository has been archived by the owner on Oct 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
70 lines (70 loc) · 2.3 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
62
63
64
65
66
67
68
69
70
{
"name": "folio",
"version": "0.4.0",
"bin": {
"folio": "./cli.js"
},
"main": "./out/index.js",
"engines": {
"node": ">=10.17.0"
},
"scripts": {
"lint": "eslint . --ext js,ts",
"build": "tsc --build tsconfig.json",
"watch": "tsc --build tsconfig.json --watch",
"test": "folio --config=test/folio-config.ts",
"prepare": "npm run build",
"roll-dogfood": "cd dogfood && npm install",
"prepublishOnly": "rm -rf out && npm run build"
},
"dependencies": {
"@babel/code-frame": "^7.12.13",
"@babel/core": "^7.14.0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-dynamic-import": "^7.13.8",
"@babel/plugin-proposal-export-namespace-from": "^7.12.13",
"@babel/plugin-proposal-logical-assignment-operators": "^7.13.8",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-numeric-separator": "^7.12.13",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/plugin-proposal-private-methods": "^7.13.0",
"@babel/plugin-proposal-private-property-in-object": "^7.14.0",
"@babel/plugin-syntax-async-generators": "^7.8.4",
"@babel/plugin-syntax-json-strings": "^7.8.3",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.14.0",
"@babel/preset-typescript": "^7.13.0",
"colors": "^1.4.0",
"commander": "^6.1.0",
"expect": "^26.4.2",
"jpeg-js": "^0.4.2",
"minimatch": "^3.0.3",
"ms": "^2.1.2",
"pirates": "^4.0.1",
"pixelmatch": "^5.2.1",
"rimraf": "^3.0.2",
"source-map-support": "^0.4.18",
"stack-utils": "^2.0.2"
},
"devDependencies": {
"@types/babel__core": "^7.1.14",
"@types/micromatch": "^4.0.1",
"@types/minimatch": "^3.0.3",
"@types/rimraf": "^3.0.0",
"@types/xml2js": "^0.4.5",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.8.1",
"eslint-plugin-notice": "^0.9.10",
"folio": "./dogfood/node_modules/folio",
"micromatch": "^4.0.2",
"typescript": "=4.0.2",
"xml2js": "^0.4.23"
},
"license": "Apache-2.0",
"author": {
"name": "Microsoft Corporation"
},
"repository": "github:Microsoft/folio"
}