forked from wagenet/ember-typings-generator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 881 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "ember-typings-generator",
"version": "0.0.1",
"description": "A typings generator for ember",
"author": "Peter Wagenet <peter.wagenet@gmail.com>",
"bin": {
"ember-typings-generator": "./bin/generate.js"
},
"scripts": {
"update": "mkdir source && cd source && curl -O http://builds.emberjs.com/tags/v2.14.1/ember-docs.json && curl -O http://builds.emberjs.com/tags/v2.14.1/ember-data-docs.json",
"build": "./bin/generate.js",
"lint": "echo linting... && tslint \"**/*.ts\" -e \"node_modules/**\" -e \"typings/**\"",
"test": "npm run lint",
"update+build+test": "npm run update && npm run build && npm run lint"
},
"devDependencies": {
"dtslint": "Microsoft/dtslint#production",
"ts-node": "^0.7.1",
"tslint": "^5.5.0",
"tslint-config-typings": "^0.2.0",
"typescript": "^2.4.2",
"typings": "^0.7.11"
}
}