-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
44 lines (44 loc) · 1.08 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": "react-string-replace",
"version": "1.1.1",
"description": "String#replace for React components",
"license": "MIT",
"main": "index.js",
"repository": "iansinnott/react-string-replace",
"author": {
"name": "Ian Sinnott",
"email": "[email protected]",
"url": "https://github.com/iansinnott"
},
"engines": {
"node": ">=0.12.0"
},
"scripts": {
"lint": "eslint --ignore-pattern example index.js",
"test": "npm run lint && ava --verbose",
"bump:patch": "npm version patch -m \"v%s\"",
"bump:minor": "npm version minor -m \"v%s\"",
"bump": "npm run bump:patch",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"react",
"string",
"replace"
],
"dependencies": {},
"devDependencies": {
"ava": "^0.23.0",
"babel-eslint": "^8.0.0",
"eslint": "^3.10.2",
"eslint-config-iansinnott": "^1.0.1",
"eslint-config-zen": "^3.0.0",
"eslint-plugin-flowtype": "^2.25.0",
"eslint-plugin-react": "^7.0.0"
}
}