forked from huan/pure-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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": "pure-typescript",
"version": "0.0.3",
"description": "Pure TypeScript Executor for Node & Browser with Zero Setting",
"main": "src/pure-typescript.js",
"scripts": {
"test": "tap test/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zixia/pure-typescript.git"
},
"keywords": [
"pure-typescript",
"purets",
"typescript"
],
"author": "Zhuohuan LI <zixia@zixia.net>",
"license": "ISC",
"bugs": {
"url": "https://github.com/zixia/pure-typescript/issues"
},
"homepage": "https://github.com/zixia/pure-typescript#readme",
"dependencies": {
"@types/node": "^7.0.0",
"source-map-support": "^0.4.15",
"typescript": "^2.3.1",
"typescript-simple": "^7.0.0",
"yargs": "^6.6.0"
},
"files": [
"package.json",
"README.md",
"CHANGELOG.md",
"LICENSE",
"src/pure-typescript.js",
"bin/pts.js"
],
"bin": {
"pts": "bin/pts.js"
},
"devDependencies": {
"sinon": "^1.17.6",
"tap": "^10.3.1"
}
}