-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.45 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"author": {
"name": "Shopify Inc."
},
"dependencies": {
"@shopify/javascript-utilities": "^2.1.0",
"@types/classnames": "^2.2.3",
"classnames": "^2.2.5"
},
"deprecated": false,
"description": "A set of utilities for React projects at Shopify.",
"devDependencies": {
"@types/enzyme-adapter-react-16": "^1.0.2",
"@types/jest": "^22.2.3",
"@types/node": "^10.0.8",
"@types/react": "^16.3.14",
"@types/react-dom": "^16.0.5",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-shopify": "^22.0.0",
"in-publish": "^2.0.0",
"jest": "^22.4.3",
"jest-cli": "^22.4.3",
"npm-run-all": "^4.1.3",
"prettier": "^1.12.1",
"raf": "^3.4.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"rimraf": "^2.6.2",
"ts-jest": "^22.4.6",
"typescript": "^2.8.3"
},
"engines": {
"node": ">=8.9.0"
},
"eslintConfig": {
"extends": [
"plugin:shopify/node",
"plugin:shopify/typescript-react",
"plugin:shopify/typescript-prettier"
],
"rules": {
"func-style": [
"error",
"declaration",
{
"allowArrowFunctions": true
}
]
}
},
"homepage": "https://github.com/Shopify/react-utilities",
"jest": {
"setupFiles": [
"<rootDir>/tests/setup.ts"
],
"testRegex": "[\\w+]\\.test\\.(tsx?|js)$",
"roots": [
"<rootDir>/src"
],
"transform": {
"\\.tsx|ts?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"keywords": [
"react",
"shopify"
],
"license": "MIT",
"main": "index.js",
"name": "@threekit/shopify-react-utilities",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git://github.com/Shopify/react-utilities.git"
},
"scripts": {
"build": "tsc -outDir .",
"check": "npm-run-all lint ts",
"clean": "rimraf '*.{js,d.ts}'",
"lint": "eslint ./**/*.{js,ts,tsx} --format codeframe",
"prebuild": "yarn run clean",
"prepublish": "in-publish && yarn run build || :",
"prettier": "prettier ./**/*.{scss,css,json,js,ts,tsx} --write",
"test": "jest",
"test:ci": "yarn run test -- --runInBand",
"test:watch": "yarn test --watch",
"ts": "tsc --noEmit"
},
"version": "2.0.8-threekit.2"
}