-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.75 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": "cfrp",
"version": "0.10.4",
"description": "WIP",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"lint-test": "eslint test.js",
"lint": "eslint src",
"test": "babel-node test/index.js | tap-spec",
"check": "npm run lint && npm run test",
"counter": "node examples/counter/server.js",
"todos": "node examples/todos/server.js",
"compile": "rimraf lib && babel -d lib/ src/",
"build:umd:dev": "webpack src/index.js dist/cfrp.js --config webpack.config.dev.js",
"build:umd:prod": "webpack src/index.js dist/cfrp.min.js --config webpack.config.prod.js",
"build:umd": "rimraf dist && npm run build:umd:dev && npm run build:umd:prod",
"prepublish": "npm run check && npm run compile && npm run build:umd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yelouafi/cfrp.git"
},
"keywords": [],
"author": "Yassine ELOUAFI <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yelouafi/cfrp/issues"
},
"homepage": "https://github.com/yelouafi/cfrp#readme",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.1.18",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-2": "^6.1.18",
"eslint": "^2.10.2",
"express": "^4.13.4",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"rimraf": "^2.5.2",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"webpack": "1.13.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.6.0"
},
"npmName": "cfrp",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}