forked from microsoft/devicescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.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
33
34
35
36
37
38
39
40
41
{
"name": "@devicescript/server",
"version": "2.14.3",
"private": true,
"dependencies": {},
"devDependencies": {
"@devicescript/cli": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/devicescript.git",
"directory": "packages/server"
},
"scripts": {
"setup": "devicescript build",
"build:devicescript": "devicescript build src/main.ts -F allFunctions",
"build": "yarn build:devicescript",
"watch:devicescript": "devicescript devtools src/main.ts -F allFunctions",
"watch": "yarn watch:devicescript",
"test:devicescript": "devicescript run src/main.ts --test --test-self-exit",
"test": "yarn test:devicescript",
"start": "yarn watch"
},
"main": "./src/index.ts",
"license": "MIT",
"devicescript": {
"bundle": true,
"library": true
},
"files": [
"src/*.ts",
"devsconfig.json"
],
"keywords": [
"devicescript"
],
"author": "Microsoft",
"publishConfig": {
"access": "public"
}
}