-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "mifare-node-js",
"author": "Elliot Maincourt <[email protected]>",
"version": "0.0.1",
"description": "Read and write dumps of Mifare Classic 1K tags.",
"main": "dist",
"scripts": {
"build": "babel index.js -d dist",
"test": "jest",
"test:coverage": "jest && codecov",
"test:watch": "jest --watch"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"keywords": [
"Mifare",
"NodeJS",
"NFC"
],
"readmeFilename": "README.md",
"dependencies": {
"babel-jest": "^20.0.3",
"better-console": "^1.0.0",
"bluebird": "^3.5.0",
"colors": "^1.1.2",
"console.table": "^0.8.0",
"jest": "^20.0.4",
"lodash": "^4.17.4",
"prompt": "^1.0.0"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.4.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0"
}
}