This repository has been archived by the owner on Nov 12, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
{
"name": "@comsemrel/typescript-vfs-compiler",
"version": "0.2.0",
"description": "TypeScript compiler based on in-memory file system",
"main": "dist/compiler.js",
"module": "dist/compiler.es2015.js",
"scripts": {
"lint": "eslint src/**/*.js tests/*.js",
"build": "rlb",
"pretest": "npm run lint && npm run build",
"test": "mocha tests/*.js",
"preversion": "npm test && git add -f dist/",
"postversion": "git rm -r --cached dist/ && git commit -m \"chore(dist): clean after release [ci skip]\" && git push origin && git push origin --tags",
"prepublish": "in-publish && npm run build || exit 0"
},
"files": [
"bin",
"dist"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ComSemRel/typescript-vfs-compiler.git"
},
"keywords": [
"typescript",
"compiler",
"vfs"
],
"author": "Comandeer",
"license": "MIT",
"bugs": {
"url": "https://github.com/ComSemRel/typescript-vfs-compiler/issues"
},
"homepage": "https://github.com/ComSemRel/typescript-vfs-compiler#readme",
"devDependencies": {
"@comandeer/rollup-lib-bundler": "^0.3.0",
"chai": "^4.1.2",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^4.1.0",
"in-publish": "^2.0.0",
"mocha": "^4.0.0",
"rimraf": "^2.6.1",
"rollup": "^0.50.0",
"sinon": "^4.0.0",
"sinon-chai": "^2.9.0"
},
"dependencies": {
"chalk": "^2.0.0",
"typescript": "^2.2.2"
}
}