-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.57 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.57 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "frigging-bootstrap",
"version": "0.13.0",
"repository": {
"type": "git",
"url": "frig-js/frigging-bootstrap"
},
"license": "MIT",
"private": false,
"main": "dist/frigging-bootstrap.js",
"peerDependencies": {
"frig": ">=0.13.0",
"react": "^0.14.7 || ^15.0.0-0",
"react-dom": "^0.14.7 || ^15.0.0-0",
"react-addons-css-transition-group": "^0.14.7 || ^15.0.0-0",
"classnames": "^2.2.3",
"colr": "^1.2.2",
"numeral": "^1.5.3"
},
"scripts": {
"test": "npm run test:cover",
"test:watch": "npm run test:nocover -- --watch --watch-extensions js",
"test:nocover": "mocha --compilers js:babel-core/register --require ./test/test_helper.js './test/**/*.js'",
"test:cover": "istanbul cover --root src/ --include-all-sources --report lcov --report json --report text --report html _mocha -- -r babel-register -r test/test_helper.js 'test/**/*.test.js'",
"lint": "npm run lint:failfast || true",
"lint:failfast": "eslint src/ test/",
"preversion": "./scripts/preversion.sh",
"version": "./scripts/version.sh",
"postversion": "git push && git push --tags",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"devDependencies": {
"babel-core": "6.14.0",
"babel-eslint": "6.1.2",
"babel-loader": "6.2.5",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-preset-es2015": "6.14.0",
"babel-preset-react": "6.11.1",
"babel-preset-stage-1": "6.13.0",
"babel-register": "6.14.0",
"bootstrap": "3.3.7",
"chai": "3.5.0",
"classnames": "2.2.5",
"cloner": "^0.4.0",
"colr": "1.2.2",
"coveralls": "2.11.14",
"css-loader": "0.25.0",
"dirty-chai": "1.2.2",
"enzyme": "2.4.1",
"eslint": "2.13.1",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-import": "1.14.0",
"eslint-plugin-jsx-a11y": "1.5.5",
"eslint-plugin-react": "5.2.2",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.9.0",
"font-awesome": "4.6.3",
"frig": "0.13.0",
"ignore-styles": "^5.0.1",
"istanbul": "1.0.0-alpha.2",
"jsdom": "9.5.0",
"mocha": "3.0.2",
"mocha-lcov-reporter": "1.2.0",
"numeral": "1.5.3",
"react": "15.3.1",
"react-addons-css-transition-group": "15.3.1",
"react-addons-test-utils": "15.3.1",
"react-dom": "15.3.1",
"style-loader": "0.13.1",
"stylus": "0.54.5",
"stylus-loader": "2.3.1",
"testdouble": "^1.4.2",
"url-loader": "0.5.7",
"webpack": "1.13.2",
"webpack-dev-server": "1.16.1"
},
"engines": {
"node": ">=0.12.0",
"npm": ">=2.7.0"
}
}