-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.02 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
{
"name": "devicescript-note",
"version": "0.0.1",
"dependencies": {},
"devDependencies": {
"@devicescript/cli": "latest"
},
"scripts": {
"setup": "devicescript build --quiet",
"build:devicescript": "devicescript build src/main.ts",
"postinstall": "npm run setup",
"build": "npm run build:devicescript",
"watch:devicescript": "devicescript devtools src/main.ts",
"watch": "npm run watch:devicescript",
"test:devicescript": "devicescript run src/main.ts --test --test-self-exit",
"test": "npm run test:devicescript",
"start": "npm run watch"
},
"main": "./src/index.ts",
"license": "MIT",
"devicescript": {
"library": true
},
"files": [
"src/*.ts",
"devsconfig.json"
],
"keywords": [
"devicescript"
],
"author": "pelikhan <jhalleux@microsoft.com>",
"repository": {
"type": "git",
"url": "https://github.com/pelikhan/devicescript-note.git"
}
}