-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
29 lines (29 loc) · 1.23 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
{
"name": "react-with-styles-interface-css",
"private": true,
"version": "0.0.1",
"description": "Interface for react-with-styles outputting CSS",
"author": "Felipe Vargas <felipe@fvgs.ai> (fvgs.ai)",
"license": "MIT",
"scripts": {
"postinstall": "lerna bootstrap",
"build": "lerna run build",
"clean": "lerna run clean",
"lint": "lerna run lint",
"pretest": "npm run build",
"test": "lerna run test",
"test:only": "lerna run test:only",
"react:clean": "npm uninstall --no-save react react-dom react-addons-test-utils react-test-renderer && rimraf node_modules/react-test-renderer node_modules/react && npm prune",
"react:14": "rimraf node_modules/.bin/npm && npm run react:clean && npm i --no-save react@0.14 react-dom@0.14 react-addons-test-utils@0.14 && npm prune",
"react:15": "rimraf node_modules/.bin/npm && npm run react:clean && npm i --no-save react@15 react-dom@15 react-addons-test-utils@15 react-test-renderer@15 && npm prune"
},
"repository": {
"type": "git",
"url": "https://github.com/airbnb/react-with-styles-interface-css.git"
},
"devDependencies": {
"lerna": "^2.11.0",
"react": "^0.14 || ^15.6.0 || ^16.1.1",
"react-dom": "^0.14 || ^15.6.0 || ^16.1.1"
}
}