-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.36 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-styless",
"version": "1.0.2",
"description": "Style your components declaratively with familiar less syntax",
"main": "dist/index.js",
"source": "src/index.js",
"repository": "https://github.com/jean343/styless.git",
"author": "Jean-Philippe Bergeron <bergeron.jeanphilippe@gmail.com>",
"license": "MIT",
"scripts": {
"test": "yarn run clean && yarn run build && jest",
"watch": "jest --watch --no-cache",
"clean": "jest --clearCache",
"build": "babel -d dist/ src/",
"prepare": "yarn run build",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"jest": {
"testURL": "http://localhost/"
},
"dependencies": {
"@babel/generator": "^7.6.4",
"find-babel-config": "^1.2.0",
"less": "3.9.0",
"tinycolor2": "^1.4.1"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@scoped/package": "link:./test/packages/scoped-package",
"babel-plugin-styled-components": "^1.10.6",
"jest": "^24.9.0",
"jest-styled-components": "^6.3.3",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-test-renderer": "^16.11.0",
"semantic-release": "^15.13.30",
"styled-components": "^4.4.1",
"travis-deploy-once": "^5.0.11"
}
}