-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
46 lines (46 loc) · 1.54 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
44
45
46
{
"name": "typescript-in-definitelyland",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"scripts": {
"global": "gem install bundler",
"postinstall": "bundle install",
"pdf": "npm run build && grunt pdf",
"web": "npm run build && grunt web",
"postweb": "cp -r publish/ docs/",
"html": "npm run build && grunt html",
"epub": "npm run build && grunt epub",
"check:prh": "prh --verify --verbose articles/*.re",
"build:sub": "npm run build:sub1 && npm run build:sub2 && npm run build:sub3 && npm run build:sub4 && npm run build:sub5",
"build:sub1": "tsc -p code/at-types/usage/",
"build:sub2": "tsc -p code/definition-file/augmentGlobal/",
"build:sub3": "tsc -p code/tsc-options/helpers/vanilla/",
"build:sub4": "tsc -p code/tsc-options/helpers/noEmitHelpers/",
"build:sub5": "tsc -p code/tsc-options/helpers/importHelpers/",
"build": "tsc -p ./ && npm run build:sub && npm run check:prh"
},
"dependencies": {},
"devDependencies": {
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.7",
"@types/power-assert": "^1.4.29",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-open": "^0.2.3",
"grunt-shell": "^2.1.0",
"js-yaml": "^3.8.4",
"load-grunt-tasks": "^3.5.0",
"node-sass": "^4.5.3",
"prh": "^5.4.0",
"prh-languageserver": "^0.4.0",
"tslint": "^5.4.3",
"typescript": "2.4.2",
"typescript-formatter": "^5.2.0"
}
}