-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.43 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
{
"name": "react-constant",
"version": "2.0.1",
"description": "Fuck off constants.js and global constants in react/flux/redux/wateva.",
"main": "lib/index.js",
"files": [
"dist",
"lib",
"src"
],
"scripts": {
"clean": "rimraf lib dist coverage",
"lint": "eslint src test examples",
"test": "karma start --single-run",
"test-node": "mocha --compilers js:babel-core/register --recursive -R nyan src/**/__test__/*.js",
"test:watch": "karma start karma.conf.js --auto-watch",
"test-node:watch": "mocha --compilers js:babel-core/register --recursive --watch src/**/__test__/*.js",
"cover-node": "./node_modules/babel-istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- --recursive src/**/__test__/*.js",
"coveralls": "npm run cover-node -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"check": "npm run lint && npm run test",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/constant.js --config webpack.config.development.js",
"build:umd:min": "webpack src/index.js dist/constant.min.js --config webpack.config.production.js",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"preversion": "npm run clean && npm run check",
"version": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yesvods/react-constant.git"
},
"keywords": [
"react",
"flux",
"redux",
"constants"
],
"author": "Jogis",
"license": "MIT",
"bugs": {
"url": "https://github.com/yesvods/react-constant/issues"
},
"homepage": "https://github.com/yesvods/react-constant#readme",
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.2.1",
"babel-eslint": "^4.1.5",
"babel-istanbul": "^0.5.9",
"babel-loader": "^6.2.0",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"coveralls": "^2.11.6",
"eslint": "^1.10.1",
"eslint-config-rackt": "^1.1.1",
"karma": "^0.13.15",
"karma-mocha": "^0.2.1",
"karma-phantomjs-launcher": "^0.2.1",
"karma-phantomjs-shim": "^1.0.0",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.4",
"mocha-lcov-reporter": "^1.0.0",
"phantomjs": "^1.9.19",
"rimraf": "^2.4.4",
"should": "^7.1.1",
"webpack": "^1.12.9"
},
"dependencies": {
"uuid": "^3.0.0"
}
}