-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.07 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
{
"name": "node-nfcpy-id",
"version": "0.1.1",
"description": "Read the ID of an NFC Tag with nfcpy",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "babel ./src --out-dir ./lib",
"lint": "eslint ./src",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mascii/node-nfcpy-id.git"
},
"keywords": [
"nfc",
"nfcpy",
"raspberrypi",
"raspbian"
],
"author": "masaki koyanagi",
"license": "MIT",
"babel": {
"presets": [
"es2015"
]
},
"eslintConfig": {
"extends": "airbnb",
"rules": {
"no-underscore-dangle": 0
},
"env": {
"es6": true,
"node": true
}
},
"dependencies": {
"@types/node": "^8.0.14",
"python-shell": "^0.4.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1"
}
}