forked from Shopify/javascript-utilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.48 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
{
"name": "@shopify/javascript-utilities",
"version": "2.4.1",
"description": "A set of utilities for JavaScript and TypeScript projects at Shopify.",
"homepage": "https://github.com/Shopify/javascript-utilities",
"repository": "https://github.com/Shopify/javascript-utilities",
"author": "Shopify <[email protected]>",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf '*.{js,d.ts}'",
"prebuild": "yarn run clean",
"build": "tsc",
"lint": "tslint -c ./config/tslint/full.json './src/**/*.ts' --project tsconfig.json",
"ts": "tsc --noEmit",
"test": "jest",
"check": "npm-run-all lint ts test",
"prepublish": "in-publish && yarn run build || :"
},
"bugs": {
"url": "https://github.com/Shopify/javascript-utilities/issues"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.1.5",
"@types/lodash-decorators": "^4.0.0",
"in-publish": "^2.0.0",
"jest": "^23.4.0",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.1",
"ts-jest": "^23.0.0",
"tslint": "^5.8.0",
"tslint-config-shopify": "^3.0.1",
"typescript": "^2.5.3"
},
"dependencies": {
"@types/lodash": "^4.14.65",
"@types/react": "^16.0.2",
"lodash": "^4.17.4",
"lodash-decorators": "^4.3.5"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(\\.|/)(test|spec)\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}