forked from ModulUI/common-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.72 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": "modul-helpers",
"version": "0.1.108",
"description": "Хелперы",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"lib",
"es",
"src"
],
"scripts": {
"test": "jest",
"test-watch": "jest --watchAll",
"build1": "babel src/index.js --out-file index.js --source-maps",
"build2": "babel ./src --out-dir ./lib",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build": "npm run build:commonjs && npm run build:es",
"git-pub": "git commit -am 'fix' && git push && npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ModulUI/common-helpers.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ModulUI/common-helpers/issues"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "6.13.2",
"babel-loader": "6.2.4",
"babel-plugin-istanbul": "1.0.3",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-plugin-syntax-decorators": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "6.13.2",
"babel-preset-react": "6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "6.11.6",
"cross-env": "^5.1.3",
"jest": "^23.5.0",
"pre-commit": "^1.2.2"
},
"pre-commit": [
"test"
],
"homepage": "https://github.com/ModulUI/common-helpers#readme"
}