-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 863 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 863 Bytes
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
{
"name": "reterm-libdot",
"version": "1.0.0",
"description": "Grab bag of js, including hterm and its support library.",
"main": "libdot/js/lib.js",
"scripts": {
"test": "NODE_PATH=src ava",
"build": "babel src --out-dir lib",
"prepublish": "npm test && npm run build"
},
"ava": {
"babel": "inherit",
"require": [
"babel-register"
],
"files": [
"test/**/*.test.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/web-app-messaging/wam.js.git"
},
"author": "Chromium authors",
"licensce": "CHROMIUM",
"readmeFilename": "README.md",
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-preset-es2015": "^6.13.2",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6"
},
"dependencies": {}
}