-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.55 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
{
"name": "find-with-regex",
"version": "1.1.3",
"description": "findWithRegex util",
"author": {
"name": "Nik Graf",
"email": "nik@nikgraf.com",
"url": "http://www.nikgraf.com"
},
"repository": {
"type": "git",
"url": "git@github.com:draft-js-plugins/find-with-regex.git"
},
"main": "build/index.js",
"keywords": [],
"scripts": {
"build": "npm run build:js && npm run build:flow",
"build:js": "BABEL_ENV=production babel --out-dir='build' --ignore='__tests__/*' src",
"build:flow": "cp src/index.js build/index.js.flow",
"lint": "npm run lint:eslint && npm run lint:jscs",
"flow": "flow",
"lint:eslint": "eslint ./",
"lint:eslint:fix": "eslint --fix ./",
"lint:jscs": "jscs ./",
"prepublish": "npm run build",
"precommit": "npm run flow"
},
"husky": {
"hooks": {
"pre-commit": "npm run flow"
}
},
"precommit": "flow",
"peerDependencies": {
"draft-js": "^0.10.5"
},
"devDependencies": {
"babel": "^6.5.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.5.1",
"babel-eslint": "^4.1.8",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.5.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.5.0",
"babel-plugin-webpack-loaders": "^0.9.0",
"webpack": "^2.2.1",
"draft-js": "^0.10.5",
"eslint": "^1.10.3",
"eslint-config-airbnb": "5.0.0",
"eslint-plugin-mocha": "^1.1.0",
"eslint-plugin-react": "^3.16.1",
"flow-bin": "^0.69.0",
"husky": "^0.14.3",
"jscs": "^2.11.0"
},
"license": "MIT"
}