-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 1.06 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
{
"name": "nrf-intel-hex",
"version": "1.4.0",
"license": "BSD",
"description": "Parser/writer for the Intel HEX format",
"module": "intel-hex.js",
"main": "intel-hex.cjs.js",
"types": "intel-hex.d.ts",
"browser": "intel-hex.browser.js",
"author": "Iván Sánchez Ortega <ivan@sanchezortega.es>",
"scripts": {
"lint": "eslint intel-hex.js",
"lintfix": "eslint --fix intel-hex.js",
"test": "rollup -c rollup.config.js && jest",
"rollup": "rollup -c rollup.config.js",
"docs": "jsdoc intel-hex.js -t node_modules/minami/ -d doc/"
},
"devDependencies": {
"eslint": "^4.10.0",
"jest": "^22.4.2",
"jest-bamboo-formatter": "^1.0.1",
"jsdoc": "^3.5.5",
"minami": "^1.2.3",
"rollup": "^0.50.0",
"rollup-plugin-buble": "^0.16.0"
},
"keywords": [
"intel",
"hex",
"ihex",
"parser"
],
"engines": {
"node": ">=6.0.0"
},
"repository": "https://github.com/NordicSemiconductor/nrf-intel-hex.git",
"jest": {
"testEnvironment": "node",
"testResultsProcessor": "jest-bamboo-formatter"
}
}