-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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
{
"name": "rawcan",
"version": "1.1.4",
"description": "Bindings for SocketCAN",
"author": {
"name": "Joe Kramer",
"email": "[email protected]"
},
"main": "dist/rawcan.js",
"typings": "dist/rawcan.d.ts",
"typescript": {
"definition": "dist/rawcan.d.ts"
},
"scripts": {
"configure": "node-gyp configure",
"build:gyp": "node-gyp build",
"build:jssrc": "tsc -p src",
"build:jstest": "tsc -p test",
"build:js": "npm run build:jssrc && npm run build:jstest",
"build": "npm run build:gyp && npm run build:js",
"preversion": "npm test",
"watch": "npm run build:jssrc -- --watch & npm run build:jstest -- --watch",
"test": "NODE_ENV=test mocha build/rawcan_test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jjkr/rawcan.git"
},
"keywords": [
"CAN"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jjkr/rawcan/issues"
},
"homepage": "https://github.com/jjkr/rawcan#readme",
"os": [
"linux"
],
"dependencies": {
"bindings": "^1.2.1",
"nan": "^2.2.1"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5",
"typescript": "^1.8.9",
"typings": "^0.7.12"
}
}