-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.74 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
{
"name": "@seagull/build-tools",
"version": "0.1.10",
"description": "custom seagull building, bundling, transforms tools",
"main": "dist/src/index.js",
"types": "dist/src/index.d.js",
"scripts": {
"build": "rm -rf dist && tsc",
"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/build-tools.git"
},
"author": "Tom Jaster <[email protected]>",
"license": "LGPL-3.0",
"devDependencies": {
"@seagull/code-generators": "0.5.1",
"@seagull/core": "0.8.0",
"@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.8"
},
"dependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"babel-plugin-react": "^1.0.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-react": "^6.24.1",
"browserify": "^14.4.0",
"browserify-incremental": "3.1.1",
"lodash": "^4.17.5",
"node-dir": "^0.1.17",
"prettier": "^1.10.2",
"shelljs": "^0.8.1",
"stream-to-string": "^1.1.0",
"uglify-es": "^3.0.28",
"villa": "^0.3.1"
},
"peerDependencies": {
"typescript": "2.7.2",
"@seagull/code-generators": "^0.5.1"
}
}