-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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
{
"name": "@ajhyndman/puz",
"version": "1.0.0",
"description": "Read and write Across Lite .puz files",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"repository": "git@github.com:ajhyndman/puz.git",
"author": "Andrew Hyndman <ajhyndman@hotmail.com>",
"license": "MIT",
"sideEffects": false,
"engines": {
"node": ">=15.0"
},
"scripts": {
"build": "rollup --config rollup.config.js",
"format": "prettier --write src test",
"prepare": "yarn build",
"release": "np",
"size": " rollup -i src/index.ts -f cjs -p @rollup/plugin-typescript | uglifyjs -c -m | gzip | wc -c",
"test": "jest"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "13.0.2",
"@rollup/plugin-typescript": "8.2.1",
"@types/jest": "26.0.23",
"jest": "27.0.4",
"np": "8.0.4",
"prettier": "2.3.2",
"rollup": "2.52.7",
"rollup-plugin-dts": "3.0.2",
"rollup-plugin-polyfill-node": "0.6.2",
"rollup-plugin-terser": "7.0.2",
"ts-jest": "27.0.3",
"typescript": "4.3.4",
"uglify-js": "3.13.10"
},
"dependencies": {
"ts-invariant": "0.8.2"
},
"optionalDependencies": {
"buffer": ">=5"
},
"files": [
"dist/index.d.ts",
"dist/index.esm.js",
"dist/index.js"
]
}