-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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": "tpr",
"version": "0.2.3",
"description": "Support tools that deal with Scala.js in the project of the npm.",
"main": "dest/transpiler.js",
"files": [
"bin",
"dest"
],
"bin": {
"tpr": "bin/cli.js"
},
"scripts": {
"build": "babel src --out-dir dest --source-maps-inline",
"example": "npm run build && (cd example && rm -rf node_modules && npm run example)",
"test": "flow check && mocha test/**/*.spec.js",
"postinstall": "scalajs-standalone-bin-install"
},
"repository": {
"type": "git",
"url": "https://github.com/k-kinzal/tpr.git"
},
"author": "k-kinzal",
"license": "MIT",
"bugs": {
"url": "https://github.com/k-kinzal/tpr/issues"
},
"homepage": "https://github.com/k-kinzal/tpr",
"dependencies": {
"child-process-promise": "^1.1.0",
"commander": "^2.8.1",
"glob": "^5.0.13",
"path": "^0.11.14",
"scalajs-standalone-bin": "^0.4.2",
"temporary": "^0.0.8"
},
"devDependencies": {
"babel": "^5.6.14",
"espower-babel": "^3.2.0",
"espower-loader": "^0.11.0",
"flow-bin": "^0.13.1",
"intelli-espower-loader": "^0.7.0",
"mocha": "^2.2.5",
"power-assert": "^0.11.0"
}
}