-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.28 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "nfq-react-component",
"version": "1.4.2",
"description": "nfq-react-component React component",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build": "npm run clean && npm run lint && npm run test && npm run test:e2e && nwb build-react-component && npm run build-storybook ; npm run killserver",
"postbuild": "cat ./src/index.js | react2dts --module-name nfq-react-component > lib/index.d.ts",
"clean": "nwb clean-module",
"start": "npm run storybook",
"lint": "eslint *.js src tests",
"lint:fix": "npm run lint -- --fix",
"test": "nwb test-react",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server",
"pretest:e2e": "xnohup npm start",
"test:e2e": "sleep 3 && codeceptjs run --steps",
"killserver": "tree-kill `lsof -i:3000 | grep node | awk '{ print $2 }' | xargs | cut -d ' ' -f2`",
"gpublish": "npm run build-storybook && gh-pages -d storybook-static",
"storybook": "start-storybook -p 3000",
"build-storybook": "build-storybook"
},
"dependencies": {},
"peerDependencies": {
"react": "15.x || 16.x",
"react-dom": "15.x || 16.x"
},
"devDependencies": {
"@storybook/addon-actions": "^3.2.15",
"@storybook/addon-info": "3.2.15",
"@storybook/addon-links": "^3.2.15",
"@storybook/addon-options": "3.2.15",
"@storybook/react": "^3.2.15",
"babel-eslint": "8.0.1",
"codeceptjs": "1.0.3",
"concurrently": "3.5.0",
"eslint": "4.11.0",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-codeceptjs": "0.2.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-react": "7.4.0",
"gh-pages": "1.0.0",
"nightmare": "2.10.0",
"nightmare-upload": "0.1.1",
"nohup": "0.1.0",
"nwb": "0.19.x",
"react": "16.1.1",
"react-dom": "16.1.1",
"react-to-typescript-definitions": "0.22.0",
"tree-kill": "1.2.0"
},
"author": "eta",
"homepage": "https://github.com/nfq-eta/nfq-react-component",
"license": "MIT",
"keywords": [
"react-component"
],
"repository": {
"type": "git",
"url": "https://github.com/nfq-eta/nfq-react-component.git"
},
"engines": {
"node": ">=8",
"npm": ">=5"
}
}