-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.37 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
{
"version": "1.0.0-alpha.8",
"name": "babel-plugin-reusable",
"description": "Improve the debugging experience for reusable",
"repository": "reusablejs/babel-plugin-reusable",
"main": "lib/index.js",
"files": [
"lib"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.3",
"babel-core": "7.0.0-bridge.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-test": "^0.1.6",
"jest": "^23.6.0",
"jest-file-snapshot": "^0.3.6",
"prettier": "^1.16.4",
"reusable": "*",
"rimraf": "^2.6.3"
},
"dependencies": {
"@babel/helper-module-imports": "^7.0.0"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"peerDependencies": {
"reusable": ">= 1"
},
"scripts": {
"clean": "rimraf lib",
"style": "prettier --write src/**/*.js",
"build": "babel src -d lib",
"test": "jest",
"test:watch": "npm run test -- --watch",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"reusable",
"babel-plugin"
],
"jest": {
"testEnvironment": "node",
"snapshotSerializers": [
"<rootDir>/test/whitespaceTrimmingSerializer.js"
],
"watchPathIgnorePatterns": [
"fixtures\\/[^/]+\\/(output|error)\\.js"
]
}
}