-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"name": "babel-plugin-rawact",
"version": "0.5.0",
"main": "lib/index.js",
"repository": "https://github.com/sokra/rawact",
"author": "Tobias Koppers <[email protected]>",
"license": "MIT",
"sideEffects": false,
"scripts": {
"prepublishOnly": "rimraf lib && babel src -d lib",
"start": "npm run prepublishOnly -- -w",
"test": "npm run prepublishOnly && npm run test-react && npm run test-rawact",
"//": "--no-cache can be removed when jest 24 is released which includes BABEL_ENV in the cache key",
"test-rawact": "cross-env BABEL_ENV=test-rawact jest --no-cache",
"test-react": "cross-env BABEL_ENV=test-react jest --no-cache"
},
"jest": {
"moduleNameMapper": {
"^babel-plugin-rawact/(.*)$": "<rootDir>/$1"
}
},
"files": [
"lib"
],
"dependencies": {
"@babel/core": "^7.1.2",
"@babel/helper-plugin-utils": "^7.0.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"cross-env": "^5.2.0",
"jest": "^23.6.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"rimraf": "^2.6.2"
}
}