-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 822 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 822 Bytes
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
{
"name": "postcss-taro-unit-transform",
"version": "4.0.3-alpha.5",
"description": "小程序单位转换",
"author": "O2Team",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "jest",
"test:clear": "jest --clearCache",
"test:cov": "jest --coverage",
"test:updateSnapshot": "jest --updateSnapshot",
"test:ci": "cross-env NODE_ENV=test jest --ci -i"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/postcss-unit-transform/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"peerDependencies": {
"postcss": "^8"
}
}