-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.53 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
{
"name": "storybook-addon-props-fela",
"version": "1.0.3",
"description": "Show props of a fela component in storybook",
"main": "lib/index.js",
"author": "wcastand",
"license": "MIT",
"keywords": [
"fela",
"storybook",
"react",
"addon",
"props"
],
"repository": {
"type": "git",
"url": "https://github.com/Kilix/storybook-addon-props-fela"
},
"scripts": {
"build": "babel src --out-dir lib --ignore spec.js,test.js",
"build:dev": "babel -w src --out-dir lib --ignore spec.js,test.js",
"format": "prettier --single-quote --trailing-comma all --tab-width 2 --bracket-spacing true --print-width 100 --write 'src/**/*.js'",
"test": "npm run format && npm run test:all",
"test:all": "jest",
"test:dev": "jest --watch",
"prebuild": "rimraf lib",
"storybook": "start-storybook -p 9009 -c ./example/.storybook",
"preversion": "npm run build",
"release": "npm run release",
"2npm": "publish"
},
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"babel-cli": "^6.24.0",
"babel-jest": "^19.0.0",
"babel-preset-env": "^1.2.2",
"babel-preset-react": "^6.23.0",
"fela": "4.3.2",
"jest": "^19.0.2",
"prettier": "^0.22.0",
"publish": "^0.6.0",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-fela": "^4.3.2",
"react-test-renderer": "^15.4.2",
"regenerator-runtime": "^0.10.3",
"release": "^1.1.7",
"rimraf": "^2.6.1"
},
"dependencies": {
"lodash": "4.17.4"
}
}