-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1 KB
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
{
"name": "@digilent/dip-js",
"version": "0.0.2",
"description": "Digilent Instrument Protocol JavaScript Module",
"main": "index.js",
"scripts": {
"test": "jasmine-node spec/core.js",
"prepublish": "npm run build",
"clean": "rm -rf dist && rm -rf docs/* && rm -rf bundle",
"docs": "typedoc --out ./docs ./src",
"build": "npm run clean && tsc && webpack bundle-helper.js ./bundle/dip-js.js && npm run docs"
},
"repository": {
"type": "git",
"url": "git+https://git.digilentinc.com/dsukumar/dip-js.git"
},
"author": "sudharsan.sukumar5@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://git.digilentinc.com/dsukumar/dip-js/issues"
},
"homepage": "https://git.digilentinc.com/dsukumar/dip-js#readme",
"dependencies": {
"rxjs": "5.5.2"
},
"devDependencies": {
"typescript": "2.6.1",
"uglify-js": "3.1.9",
"typedoc": "0.9.0",
"webpack": "^3.5.3"
}
}