forked from eejdoowad/mosi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.54 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": "mosi",
"version": "1.6.0",
"description": "Simpler messaging for chrome extensions",
"scripts": {
"build": "npm run clean && tsc --project tsconfig.json && eslint --fix lib/*.js && mv lib/*.js . && rimraf lib",
"clean": "rimraf core.js client.js node.js light-client.js",
"build:types": "cp mosi.all.d.ts client.d.ts && cp mosi.all.d.ts core.d.ts",
"clean:types": "rimraf client.d.ts core.d.ts",
"build:all": "npm run build && npm run build:types",
"clean:all": "npm run clean && npm run clean:types",
"watch": "npm run build -- --watch",
"lint": "tslint --project tsconfig.json --force -t stylish",
"lint:fix": "npm run lint -- --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "echo \"No deploy specified\"",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eejdoowad/mosi.git"
},
"files": [
"src",
"core.js",
"client.js",
"light-client.js",
"node.js",
"core.d.ts",
"client.d.ts",
"light-client.d.ts"
],
"author": "eejdoowad <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eejdoowad/mosi/issues"
},
"homepage": "https://github.com/eejdoowad/mosi",
"devDependencies": {
"@types/chrome": "0.0.40",
"@types/uuid": "^2.0.29",
"eslint": "^3.12.2",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"rimraf": "^2.5.4",
"tslint": "^4.1.1",
"typescript": "^2.1.4"
},
"dependencies": {}
}