This repository has been archived by the owner on Jul 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.56 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
47
48
49
50
51
52
53
54
55
{
"name": "babel-dts-generator",
"version": "0.6.3",
"description": "Babel DTS generator",
"main": "lib/index.js",
"scripts": {
"build": "simple-scripts build",
"lint": "simple-scripts lint",
"test": "simple-scripts check",
"watch": "simple-scripts watch"
},
"simpleScripts": {
"build": "node node_modules/babel-cli/bin/babel.js src --out-dir lib",
"lint": "node node_modules/eslint/bin/eslint.js src/**/*.js",
"test": "node node_modules/babel-cli/bin/babel-node.js test/index.js",
"watch": "node node_modules/nodemon/bin/nodemon.js --exec \"yarn run test\" --watch src --watch spec --watch test",
"check": [
"lint",
"build",
"test"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/YoloDev/babel-dts-generator.git"
},
"keywords": [
"aurelia",
"babel",
"dts"
],
"author": "Alxandr",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/YoloDev/babel-dts-generator/issues"
},
"homepage": "https://github.com/YoloDev/babel-dts-generator#readme",
"devDependencies": {
"babel-cli": "^6.0.14",
"babel-core": "^6.0.14",
"babel-eslint": "^7.1.0",
"babel-plugin-syntax-flow": "^6.0.14",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.0.14",
"babel-preset-stage-1": "^6.0.14",
"cli-color": "^1.1.0",
"diff": "^3.0.1",
"eslint": "^3.1.0",
"estraverse-fb": "^1.3.1",
"glob-promise": "^3.1.0",
"nodemon": "^1.7.1",
"simple-scripts": "^0.1.1",
"typescript": "^2.3.2"
}
}