-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 2.61 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "jstyper",
"version": "0.5.0",
"author": {
"name": "Olivier Chafik",
"email": "[email protected]",
"url": "http://ochafik.com"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/ochafik/jstyper/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ochafik/jstyper.git"
},
"categories": [
"Linters",
"Formatters",
"Languages"
],
"keywords": [
"typescript",
"flow",
"closure",
"types",
"migration"
],
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/minimist": "^1.2.0",
"@types/mocha": "^2.2.39",
"@types/node": "^7.0.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"chai": "^3.5.0",
"clang-format": "^1.0.46",
"concurrently": "^3.1.0",
"inline-assets": "^1.1.2",
"lite-server": "^2.2.2",
"mocha": "^3.2.0",
"rollup": "^0.41.4",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-filesize": "^1.0.1",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-typescript": "^0.8.1",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^3.2.2",
"typescript": "^2.2.0",
"uglify-js-harmony": "^2.6.2"
},
"dependencies": {
"minimist": "^1.2.0",
"source-map-support": "^0.4.11",
"tslib": "^1.5.0"
},
"scripts": {
"build": "rm -fR build && npm run rollup:demo && npm run rollup:cli && inline-assets index.html build/demo.html",
"demo": "concurrently --kill-others \"DEV=1 npm run rollup:demo -- -w\" lite-server",
"start": "concurrently --kill-others \"npm run demo\" \"npm run test:w\"",
"rollup:demo": "rollup -c rollup.config.demo.js",
"rollup:cli": "rollup -c rollup.config.cli.js",
"test": "tsc && mocha build/test",
"test:w": "tsc && concurrently \"tsc -w\" \"mocha build/test --watch\"",
"update-specs": "UPDATE_SPECS=1 npm test",
"update-specs:w": "UPDATE_SPECS=1 npm run test:w",
"format": "clang-format --glob=src/**/*.ts -i -style=Google",
"prepare-release": "npm test && npm run build",
"major-release": "npm run prepare-release && npm version major && npm publish && git push --follow-tags && ./deploy.sh",
"minor-release": "npm run prepare-release && npm version minor && npm publish && git push --follow-tags && ./deploy.sh",
"patch-release": "npm run prepare-release && npm version patch && npm publish && git push --follow-tags && ./deploy.sh"
},
"bin": {
"jstyper": "bin/jstyper.js"
},
"files": [
"bin/jstyper.js",
"build/cli.js",
"build/demo.html",
"build/demo.js.map"
]
}