-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
42 lines (42 loc) · 1010 Bytes
/
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
{
"name": "@shopify/condense-number",
"version": "1.0.1",
"repository": "[email protected]:Shopify/condense-number.git",
"author": "Shopify <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.m.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "microbundle",
"format": "prettier --write src/**/*",
"test": "jest",
"prepublish": "in-publish && yarn build || :"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"eslint": "^7.26.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-shopify": "^35.1.0",
"in-publish": "^2.0.0",
"jest": "^26.6.3",
"microbundle": "^0.13.0",
"prettier": "^2.2.1",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": ".+\\.test\\.ts$",
"moduleFileExtensions": [
"js",
"ts"
]
}
}