-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
33 lines (33 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
{
"name": "intern-tutorial",
"version": "4.0.0-alpha.12",
"description": "Intern tutorial. Learn how to use Intern by following this tutorial!",
"repository": {
"type": "git",
"url": "https://github.com/theintern/intern-tutorial.git"
},
"license": "BSD-3-Clause",
"bugs": "https://github.com/theintern/intern-tutorial/issues",
"homepage": "http://theintern.io/",
"dependencies": {
"systemjs": "~0.19.47",
"tslib": "~1.8.0"
},
"devDependencies": {
"@types/systemjs": "~0.20.2",
"concurrently": "~3.5.0",
"cpx": "~1.5.0",
"intern": "~4.8.0",
"typescript": "~3.8.3"
},
"scripts": {
"build": "concurrently \"npm run compile\" \"npm run copy\"",
"build:watch": "concurrently \"npm run compile:watch\" \"npm run copy:watch\"",
"compile": "tsc -p .",
"compile:watch": "tsc -p . --watch",
"copy": "cpx \"src/**/*.{js,html,css}\" _dist/src",
"copy:watch": "cpx \"src/**/*.{js,html,css}\" _dist/src --watch",
"pretest": "npm run build",
"test": "intern"
}
}