-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "react-faceted-token-input",
"version": "1.2.1",
"description": "React Faceted Token Input",
"main": "./lib/index.js",
"jsnext:main": "./src/index.js",
"scripts": {
"start": "npm run storybook",
"build": "cross-env NODE_ENV=production babel src --out-dir lib",
"clean": "rimraf lib",
"flow": "flow",
"format": "prettier --tab-width 2 --single-quote --write \"*.js\" \"{src,stories}/**/*.js\"",
"lint": "eslint src test",
"test": "cross-env NODE_ENV=test jest",
"storybook": "start-storybook --port 9001 --dont-track --config-dir stories/config --static-dir stories/static",
"prepublish": "yarn build && yarn lint"
},
"files": [
"lib",
"src"
],
"author": "Pier Paolo Ramon <[email protected]> (https://github.com/yuchi)",
"license": "LGPL-2.1",
"dependencies": {
"classnames": "^2.2.2"
},
"peerDependencies": {
"react": "^0.14.5 || ^15.5.4"
},
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"babel-cli": "^6.4.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.0.1",
"cross-env": "^1.0.7",
"eslint": "^3.19.0",
"eslint-config-prettier": "^2.1.1",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-prettier": "^2.1.1",
"eslint-plugin-react": "^7.0.1",
"flow-bin": "^0.47.0",
"jest-cli": "^0.8.2",
"prettier": "^1.4.2",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"rimraf": "^2.5.0",
"webpack": "^1.12.9",
},
"directories": {
"stories": "stories",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smclab/react-faceted-token-input.git"
},
"keywords": [
"react",
"token",
"input",
"faceted",
"component"
],
"bugs": {
"url": "https://github.com/smclab/react-faceted-token-input/issues"
},
"homepage": "https://github.com/smclab/react-faceted-token-input#readme",
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testDirectoryName": "test",
"testPathDirs": [
"<rootDir>/src"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/fbjs"
]
}
}