-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.8 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
71
72
{
"name": "@cactuslab/nicetype",
"version": "1.0.1",
"description": "Transform plain ASCII punctuation into “smart” Unicode equivalents.",
"main": "dist/nicetype.js",
"module": "src/index.js",
"files": [
"dist/**/*.js",
"src/"
],
"engines": {
"node": "14.16.1",
"npm": "6.14.12",
"pnpm": ">=6.3.0"
},
"scripts": {
"test": "jest",
"lint": "pnpx eslint src/**",
"prepare": "pnpm run lint && pnpm test",
"build": "pnpx webpack --config _develop/webpack.config.prod.js --env NODE_ENV=prod",
"preversion": "npm run prepare",
"version": "npm run build && git add -A dist"
},
"browserslist": [
"defaults"
],
"keywords": [
"typography",
"curly quotes",
"dashes",
"hyphens"
],
"author": "Cactuslab",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"babel-jest": "^27.0.2",
"babel-loader": "^8.2.2",
"browserlist": "^1.0.1",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.3",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"@babel/runtime": "^7.14.0",
"core-js": "^3.13.0"
},
"directories": {
"test": "tests"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "https://github.com/cactuslab/nicetype"
},
"bugs": {
"url": "https://github.com/cactuslab/nicetype/issues"
},
"homepage": "https://github.com/cactuslab/nicetype#readme"
}