-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "snips-action-music",
"version": "1.0.0",
"description": "Snips action code for the Music app",
"main": "dist/index.js",
"scripts": {
"start": "npm run lint && npm run build && npm run test",
"build": "snips-toolkit build",
"dev": "snips-toolkit dev",
"test": "snips-toolkit test '^.*\\.spec\\.[jt]s$'",
"test:sandbox": "snips-toolkit test -s '^.*\\.spec\\.[jt]s$'",
"launch": "snips-toolkit run",
"lint": "eslint \"**/*.[jt]s\""
},
"author": "Ke Fang",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^12.0.8",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"eslint": "^5.16.0",
"eslint-plugin-jest": "^22.7.0",
"hermes-javascript": "^0.3.12",
"snips-toolkit": "^1.0.1",
"typescript": "^3.5.2"
},
"dependencies": {
"mpc-js": "^1.2.1",
"snips-toolkit-runner": "^1.0.0"
},
"sandbox": [
"fs",
"net",
"os",
"path",
"tty",
"util"
]
}