-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.31 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
{
"private": true,
"description": "This is a monorepo. Check packages/specular for the main specular package.",
"options": {
"mocha": "--compilers js:babel/register packages/*/src/{,**}/__tests__/*.js"
},
"scripts": {
"bootstrap": "./scripts/bootstrap.sh",
"clean": "./scripts/clean.sh",
"test": "npm run unit && npm run lint",
"unit": "mocha $npm_package_options_mocha",
"unit-watch": "mocha -w $npm_package_options_mocha",
"lint": "eslint ./",
"build": "./scripts/build.sh",
"watch": "./scripts/watch.sh",
"publish": "node ./scripts/publish.js"
},
"license": "MIT",
"devDependencies": {
"async": "^1.5.0",
"babel": "^5.8.29",
"babel-eslint": "^4.1.3",
"chai": "^3.4.1",
"chai-react-assertions": "^0.2.1",
"chalk": "^1.1.1",
"eslint": "^1.10.1",
"eslint-config-standard": "^4.4.0",
"eslint-plugin-react": "^3.10.0",
"eslint-plugin-standard": "^1.3.1",
"jsdom": "^7.0.2",
"lodash.remove": "^3.1.0",
"mocha": "^2.3.4",
"proxyquire": "^1.7.3",
"react": "^0.14.1",
"react-addons-test-utils": "^0.14.3",
"react-dom": "^0.14.1",
"readline-sync": "^1.2.21",
"semver": "^5.1.0",
"shelljs": "^0.5.3",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"specular": "0.0.3"
},
"babel": {
"stage": 0
}
}