-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.25 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
{
"name": "frux",
"version": "1.0.0",
"description": "Simple wrapper over NuclearJS flux implementation",
"main": "./dist/frux.js",
"author": "Raul Matei",
"license": "Artistic-2.0",
"repository": {
"type": "git",
"url": "https://github.com/raulmatei/frux"
},
"scripts": {
"build": "babel src --out-dir lib && webpack",
"test": "nyc ava --serial",
"test-watch": "npm run test -- --watch"
},
"files": [
"lib",
"src",
"dist"
],
"ava": {
"files": [
"test/**/*-test.js"
],
"source": [
"src/**/*.{js,jsx}",
"!lib/**/*",
"!dist/**/*"
],
"failFast": true,
"require": "babel-register",
"babel": "inherit"
},
"dependencies": {
"invariant": "2.2.1",
"lodash": "4.13.1",
"nuclear-js": "1.3.0",
"nuclear-js-react-addons": "0.4.1"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"devDependencies": {
"ava": "0.24.0",
"babel-cli": "6.9.0",
"babel-core": "6.9.0",
"babel-loader": "7.1.2",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"global": "4.3.0",
"nyc": "11.4.1",
"react": "16.2.0",
"react-dom": "16.2.0",
"webpack": "3.10.0"
}
}