-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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": "ramda-loader",
"version": "0.5.2",
"description": "Indispensable RamdaJs Webpack loader for writing and debugging functional code",
"main": "dist/loader.js",
"directories": {
"test": "test"
},
"dependencies": {
"acorn": "^5.2.1",
"ast-types": "^0.10.1",
"escodegen": "^1.8.0",
"estraverse": "^4.2.0",
"loader-utils": "^1.1.0",
"ramda": "^0.25.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-sourcemaps": "^2.6.1",
"mocha": "^4.0.1",
"webpack": "^3.10.0"
},
"scripts": {
"build": "npm run build:loader && npm run build:sample",
"build:loader": "rm -rf dist/* && ./node_modules/.bin/gulp build",
"build:sample": "rm -rf sample/dist/* && ./node_modules/.bin/webpack --colors --config ./sample/webpack.config.js",
"test": "npm run build:loader && rm -rf sample/dist/* && ./node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dumconstantin/ramda-loader.git"
},
"keywords": [
"ramda",
"execution",
"debug",
"functional",
"debugging",
"trace",
"tap",
"webpack",
"loader",
"programming"
],
"author": "\"Constantin Dumitrescu <dum.constantin@gmail.com> (https://github.com/dumconstantin)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dumconstantin/ramda-loader/issues"
},
"homepage": "https://github.com/dumconstantin/ramda-loader#readme"
}