-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.2 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
{
"name": "es-ts-need-to-know",
"version": "1.0.0",
"description": "Live coding for ES6+ and TypeScript Need to Know Presentation",
"private": true,
"scripts": {
"start": "npm-run-all clean --parallel watch serve",
"build": "webpack",
"clean": "rimraf dist/",
"test": "intern serveOnly",
"watch": "chokidar 'src/**/*.{ts,js}' -c 'webpack'",
"serve": "http-server dist/ -p 8080"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SitePen/es-ts-need-to-know.git"
},
"author": "Nick Nisi <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/SitePen/es-ts-need-to-know/issues"
},
"homepage": "https://github.com/SitePen/es-ts-need-to-know#readme",
"devDependencies": {
"chokidar-cli": "^1.2.0",
"codecov.io": "^0.1.6",
"eslint": "^4.17.0",
"glob": "^7.1.2",
"grunt": "^1.0.1",
"html-webpack-plugin": "^2.30.1",
"http-server": "^0.11.1",
"intern": "^4.1.5",
"jsdom": "^11.1.0",
"npm-run-all": "^4.1.2",
"prettier": "^1.11.1",
"rimraf": "^2.6.2",
"ts-loader": "^3.5.0",
"tslint": "^5.9.1",
"typescript": "^2.7.1",
"webpack": "^3.10.0"
},
"dependencies": {}
}