This repository has been archived by the owner on Oct 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 2.38 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
102
103
{
"name": "cmpt-276",
"version": "1.0.0",
"private": true,
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-transform-modules-amd": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"@types/jest": "^23.3.14",
"@types/power-assert": "^1.5.0",
"array-unique": "^0.3.2",
"array.prototype.flat": "^1.2.1",
"async-done": "^1.3.1",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-unassert": "^2.2.0",
"babel-preset-minify": "^0.5.0",
"babel-preset-power-assert": "^3.0.0",
"bad-words": "^3.0.2",
"chalk": "^2.4.2",
"child-process-promise": "^2.2.1",
"css-mqpacker": "^7.0.0",
"cssnano": "^4.1.10",
"del": "^3.0.0",
"find-up": "^3.0.0",
"fs-extra": "^7.0.1",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-filter": "^5.1.0",
"gulp-if": "^2.0.2",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^8.0.0",
"gulp-print": "^5.0.2",
"gulp-pug": "^4.0.1",
"gulp-read": "^1.0.1",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^5.0.1",
"gulp-watch": "^5.0.1",
"http-server": "^0.11.1",
"inquirer": "^6.2.2",
"jest": "^24.5.0",
"jest-cli": "^23.6.0",
"js-yaml": "^3.13.1",
"json-format": "^1.0.1",
"laxy": "^1.0.0",
"markdown-folder-to-html": "^2.1.1",
"micromatch": "^3.1.10",
"minimist": "^1.2.3",
"mississippi": "^3.0.0",
"module-alias": "^2.2.0",
"nodegit": "^0.23.1",
"npm-programmatic": "0.0.11",
"power-assert": "^1.6.1",
"prettier": "^1.16.4",
"pug-beautify": "^0.1.1",
"readdirp": "^2.2.1",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"stream-to-promise": "^2.2.0",
"string.prototype.padend": "^3.0.0",
"string.prototype.padstart": "^3.0.0",
"through2-filter": "^3.0.0",
"ts-jest": "^24.0.0",
"tslint": "^5.14.0",
"typescript": "^3.3.3333",
"undertaker": "^1.2.0",
"vinyl": "^2.2.0"
},
"_moduleAliases": {
"@sct": ".script/sct/lib/SCT.js",
"@build": ".script/build/lib"
},
"scripts": {
"test": "jest"
},
"jest": {
"testRegex": "test/(.*)[^.]+\\.tsx?$",
"transform": {
"ts": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"moduleNameMapper": {
"@chipotle/([^/]+)/(.*)": "<rootDir>/module/$1/src/$2"
},
"globals": {
"ts-jest": {
"diagnostics": {
"ignoreCodes": [
151001
]
}
}
}
}
}