forked from jalleyne/react-optimizely
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 976 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 976 Bytes
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
{
"name": "react-optimizely",
"version": "1.0.1",
"description": "React helpers for the Optimizely JS API",
"main": "dist/index.js",
"repository": "https://github.com/onbjerg/react-optimizely.git",
"author": "Oliver Nordbjerg <hi@notbjerg.me>",
"license": "MIT",
"devDependencies": {
"ava": "^0.21.0",
"babel-cli": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"nyc": "^11.0.1",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-test-render": "^1.0.3",
"standard": "^8.6.0"
},
"peerDependencies": {},
"scripts": {
"test": "standard && nyc --reporter=lcov ava",
"test:report": "nyc report",
"prepublish": "npm run build",
"build": "babel -d dist src"
},
"ava": {
"concurrency": 5,
"require": [
"babel-register"
],
"files": [
"test/*.js",
"!test/util.js"
],
"babel": "inherit"
}
}