-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.1 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
{
"name": "babel-plugin-framer-x",
"version": "1.2.1",
"description": "A Babel plugin to remove Framer X code from your React components.",
"main": "lib/index.js",
"repository": "https://github.com/eschaefer/babel-plugin-framer-x",
"author": "Eric Schaefer",
"license": "MIT",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf lib",
"build": "mkdir ./lib && babel src --out-dir lib",
"test": "jest -u",
"test:watch": "npm run test -- --watch",
"prepublish": "npm run clean && npm run build",
"release": "np --no-yarn"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-syntax-class-properties": "^7.0.0",
"@babel/plugin-syntax-flow": "^7.0.0",
"@babel/plugin-syntax-typescript": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge",
"babel-jest": "^23.6.0",
"jest": "^23.6.0",
"np": "^3.0.4",
"rimraf": "^2.6.2"
},
"keywords": [
"babel",
"plugin",
"babel-plugin",
"react",
"framer",
"framer x",
"storybook",
"design system",
"sketch"
]
}