forked from gajus/flow-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.3 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
61
62
63
64
{
"name": "flow-runtime",
"homepage": "https://codemix.github.io/flow-runtime",
"repository": "https://github.com/codemix/flow-runtime.git",
"version": "0.20.0",
"description": "A flow compatible type system for JS.",
"main": "dist/flow-runtime.js",
"module": "dist/flow-runtime.es2015.js",
"browser": "dist/flow-runtime.umd.js",
"scripts": {
"lint": "eslint ./src",
"lint-fix": "eslint --fix ./src",
"flow": "flow",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"build": "npm run build-browser && npm run build-cjs && npm run build-es2015",
"build-browser": "cross-env NODE_ENV=production rollup -c ./config/rollup.config.browser.js",
"build-cjs": "cross-env NODE_ENV=production rollup -c ./config/rollup.config.commonjs.js",
"build-es2015": "cross-env NODE_ENV=production rollup -c ./config/rollup.config.es2015.js",
"test": "mocha",
"watch": "mocha --watch"
},
"author": "Charles Pick <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/helper-plugin-utils": "^7.0.0",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-decorators": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.0",
"cross-env": "^7.0.2",
"eslint": "^5.0.0",
"eslint-plugin-babel": "^5.0.0",
"eslint-plugin-flowtype": "^3.0.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^6.0.0",
"eslint-plugin-react": "^7.0.0",
"flow-bin": "^0.88.0",
"json-loader": "^0.5.4",
"mocha": "^5.0.0",
"react": "^15.5.4",
"rimraf": "^2.6.3",
"rollup": "^0.67.4",
"rollup-plugin-babel": "^4.0.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-uglify": "^6.0.0",
"rollup-regenerator-runtime": "^6.23.1",
"uglify-js": "git://github.com/mishoo/UglifyJS2.git#harmony"
},
"eslintConfig": {
"extends": "./config/eslint.js"
},
"dependencies": {
"@babel/runtime": "^7.0.0"
}
}