-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.67 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": "cross-loader",
"version": "0.1.0",
"author": "Izaak Schroeder <izaak.schroeder@gmail.com>",
"license": "CC0-1.0",
"repository": "metalabdesign/cross-loader",
"main": "index.js",
"scripts": {
"prepublish": "npm run clean && npm run copy && npm run build && npm run import",
"clean": "./node_modules/.bin/rimraf lib ./*.js ./*.map ./*.flow match internal",
"build": "./node_modules/.bin/babel --copy-files -s -d lib src",
"copy": "./node_modules/.bin/ncp src lib && ./node_modules/.bin/renamer --regex --find '$' --replace '.flow' 'lib/**/*.js'",
"import": "./node_modules/.bin/ncp lib .",
"test": "npm run lint && npm run spec && npm run flow",
"spec": "NODE_ENV=test ./node_modules/.bin/_mocha -r adana-dump --compilers js:babel-core/register -R spec --recursive test/spec",
"lint": "./node_modules/.bin/eslint .",
"flow": "./node_modules/.bin/flow check"
},
"dependencies": {
"loader-utils": "^1.1.0"
},
"devDependencies": {
"adana-cli": "^0.1.1",
"adana-dump": "^0.1.0",
"adana-format-istanbul": "^0.1.1",
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-adana": "^0.5.10",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"chai": "^3.4.1",
"eslint": "^4.5.0",
"eslint-config-metalab": "^7.0.1",
"file-loader": "^1.1.5",
"flow-bin": "^0.56.0",
"mocha": "^2.3.4",
"ncp": "^2.0.0",
"react": "^16.0.0",
"renamer": "^0.6.1",
"rimraf": "^2.6.1",
"webpack": "^3.8.1",
"webpack-stats-plugin": "^0.1.5"
}
}