-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 1.74 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
{
"name": "babel-plugin-react-intl-id-hash",
"version": "2.0.0",
"description": "Short consistent hash values for react-intl id's",
"main": "lib/index.js",
"scripts": {
"precommit": "lint-staged",
"build": "babel src -d lib --ignore __tests__,__fixtures__",
"prepare": "npm run build",
"flow": "flow",
"fmt": "prettier --write '{src/**/*.js,*.json}'",
"lint": "eslint src/index.js",
"pretest": "npm run lint",
"test": "jest",
"test:watch": "jest --watch",
"validate": "npm run lint && npm run test"
},
"lint-staged": {
"src/**/*.js": [
"fmt",
"validate",
"git add"
],
"*.json": [
"fmt",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/adam-26/babel-plugin-react-intl-id-hash.git"
},
"keywords": [
"react-intl",
"id",
"hash"
],
"author": "adam-26",
"license": "MIT",
"bugs": {
"url": "https://github.com/adam-26/babel-plugin-react-intl-id-hash/issues"
},
"homepage": "https://github.com/adam-26/babel-plugin-react-intl-id-hash#readme",
"files": [
"lib"
],
"dependencies": {
"babel-types": "^6.26.0",
"murmurhash-js": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-plugin-tester": "^4.0.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-register": "^6.26.0",
"eslint": "^4.9.0",
"eslint-config-precure": "^0.11.1",
"flow-bin": "^0.57.3",
"husky": "^0.14.3",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"lint-staged": "^4.3.0",
"prettier": "^1.7.4",
"slash": "^1.0.0",
"standard-version": "^4.2.0"
}
}