-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.2 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
{
"name": "@seagull/code-generators",
"version": "0.5.1",
"description": "Scaffolding capabilities and AST transforms for seagull apps",
"main": "dist/src/index.js",
"types": "dist/src/index.d.js",
"scripts": {
"build": "rm -rf dist && tsc && cp -R media dist",
"test": "NODE_ENV=test mocha --opts test/mocha.opts",
"test:watch": "NODE_ENV=test mocha --opts test/mocha.opts --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seagull-js/code-generators.git"
},
"author": "Maximilian Stroh <[email protected]>",
"license": "LGPL-3.0",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/lodash": "^4.14.103",
"@types/mocha": "^2.2.48",
"@types/node": "^6.0.100",
"chai": "^4.1.2",
"mocha": "^5.0.1",
"mocha-typescript": "^1.1.12",
"mock-fs": "^4.4.2",
"source-map-support": "^0.5.3",
"ts-node": "^4.1.0",
"tsconfig-paths": "^3.1.1",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.8.0",
"typescript": "^2.7.2"
},
"dependencies": {
"lodash": "^4.17.5",
"prettier": "^1.10.2",
"shelljs": "^0.8.1",
"ts-simple-ast": "^10.1.0"
},
"peerDependencies": {
"typescript": "^2.7.2"
}
}