-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.24 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
{
"name": "array-datastore",
"version": "1.2.0",
"description": "A datastore to store unique objects in an array.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Lwdthe1/array-datastore.git"
},
"keywords": [
"array datastore",
"array",
"datastore",
"data store"
],
"author": "Lincoln W Daniel <[email protected]> (http://lincolnwdaniel.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lwdthe1/array-datastore/issues"
},
"homepage": "https://github.com/Lwdthe1/array-datastore#readme",
"scripts": {
"test": "NODE_ENV=test mocha --recursive -t 3600000 --exit",
"format": "prettier **/**/*.{ts,js} --write --config .prettierrc"
},
"dependencies": {
"sectioned-list": "^1.1.0"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"chai": "^4.2.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-mocha": "5.2.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.11.1",
"mocha": "^5.2.0",
"prettier": "^1.15.3",
"sinon": "^7.5.0",
"sinon-test": "^2.4.0"
}
}