forked from bvaughn/highlight-words-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.33 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
{
"name": "highlight-words-core",
"description": "Utility functions shared by react-highlight-words and react-native-highlight-words",
"version": "1.1.2",
"author": "Brian Vaughn <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"build": "webpack --config webpack.config.dist.js --bail",
"lint": "standard",
"prebuild": "rimraf dist",
"prepublish": "npm run build",
"test": "mocha --compilers js:babel-register \"src/**/*.test.js\""
},
"keywords": [
"highlighter",
"highlight",
"text",
"words",
"matches",
"substring",
"occurrences",
"search"
],
"repository": {
"type": "git",
"url": "github.com/bvaughn/highlight-words-core.git"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"build",
"dist",
"node_modules"
],
"global": [
"afterAll",
"afterEach",
"beforeAll",
"beforeEach",
"describe",
"it"
]
},
"devDependencies": {
"babel-cli": "6.8.0",
"babel-core": "^6.5.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.3",
"babel-preset-es2015": "^6.14.0",
"cross-env": "^1.0.7",
"expect.js": "^0.3.1",
"latinize": "^0.3.0",
"mocha": "^3.0.2",
"rimraf": "^2.4.3",
"standard": "^7.0.1",
"webpack": "^1.9.6"
}
}