-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
70 lines (70 loc) · 2.06 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
{
"name": "jest-scss-transform",
"version": "1.0.4",
"description": "jest transform to support variables exported from scss and imported into js",
"main": "lib/index.js",
"files": [
"cov/**/*",
"lib/**/*",
"dist/**/*"
],
"scripts": {
"build": "npm run clean && npm run build:commonjs && npm run build:umd && npm run build:umd:min",
"build:commonjs": "babel src --out-dir lib",
"build:umd": "cross-env FILE_NAME=jest-scss-transform webpack",
"build:umd:min": "cross-env NODE_ENV=production npm run build:umd",
"clean": "rimraf lib dist",
"lint": "npm run lint:src && npm run lint:example",
"lint:example": "eslint example --ext .js",
"lint:src": "eslint src --ext .js",
"posttest": "npm run lint",
"prepare": "npm run build",
"prepublishOnly": "npm run test:badges && npm run build",
"release": "npm publish",
"release:dry-run": "npm publish --dry-run",
"test": "jest",
"test:badges": "npm run test:cov && jest-coverage-badges --output ./cov",
"test:cov": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/routablehq/jest-scss-transform.git"
},
"keywords": [
"jest",
"transform",
"transformer",
"scss",
"sass"
],
"author": "Routable <[email protected]>",
"contributors": [
"Emily Presser <[email protected]"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/routablehq/jest-scss-transform/issues"
},
"homepage": "https://github.com/routablehq/jest-scss-transform#readme",
"peerDependencies": {
"babel-jest": ">=24.8.0"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.7.5",
"@babel/preset-env": "7.8.7",
"babel-eslint": "10.0.3",
"babel-jest": "^24.9.0",
"cross-env": "7.0.2",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-plugin-import": "2.20.2",
"jest": "24.9.0",
"jest-coverage-badges": "1.1.2",
"rimraf": "3.0.2",
"sinon": "9.0.1",
"webpack": "4.1.1",
"webpack-cli": "4.1.0"
},
"dependencies": {}
}