-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
122 lines (122 loc) · 4.58 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "phraseanet-common",
"version": "0.4.2",
"description": "Phraseanet frontend shared libraries",
"scripts": {
"clean": "rimraf dist",
"dev": "npm run clean && set NODE_ENV=devlopment && webpack --config ./config/webpack/webpack.development.config.js --progress --profile --colors",
"production": "npm run clean && set NODE_ENV=production && webpack --config ./config/webpack/webpack.production.config.js --progress --profile --colors",
"dist": "npm run clean && set NODE_ENV=production && webpack --config ./config/webpack/webpack.production.config.js --progress --profile --colors && webpack --config ./config/webpack/webpack.production.minified.config.js --progress --profile --colors",
"test": "npm run test:server && npm run test:browser",
"test:server": "mocha --opts config/mocha.opts",
"test:browser": "./node_modules/.bin/karma start --single-run",
"watch:server": "npm run test:server -- --watch",
"watch:browser": "./node_modules/.bin/karma start --auto-watch --no-single-run",
"eslint:source": "eslint ./src/**/*.js",
"eslint:fix": "eslint --fix ./src/**/*.js",
"eslint:common": "eslint ./test/**/*.common.js",
"eslint:server": "eslint ./test/**/*.server.js",
"eslint:browser": "eslint ./test/**/*.browser.js",
"karma:firefox": "./node_modules/.bin/karma start --browsers=Firefox",
"karma:chrome": "./node_modules/.bin/karma start --browsers=Chrome",
"karma:ie": "./node_modules/.bin/karma start --browsers=IE",
"karma:all": "./node_modules/.bin/karma start --browsers=PhantomJS,Chrome,Firefox",
"packages": "npm list --depth=0",
"package:purge": "rm -rf node_modules",
"package:reinstall": "npm run package:purge && npm install",
"package:check": "./node_modules/.bin/ncu",
"package:upgrade": "./node_modules/.bin/ncu -u",
"package:prod": "./node_modules/.bin/ncu -u",
"package:dev": "./node_modules/.bin/ncu -p -u",
"asset-server": "node config/webpack/webpack.hot.assets.config",
"publish-patch": "git add -A && npm run dist && git commit && git push -u origin master && git push --tags && npm version patch && npm publish",
"publish-minor": "git add -A && npm run dist && git commit && git push -u origin master && git push --tags && npm version minor && npm publish",
"postpublish": "git push origin master --follow-tags"
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lostdalek/Phraseanet-common.git"
},
"keywords": [
"phraseanet"
],
"files": [
"dist",
"src"
],
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.1",
"babel-plugin-syntax-jsx": "^6.3.13",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"coveralls": "^2.11.6",
"dotenv": "^2.0.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"eslint-loader": "^1.2.1",
"eslint-plugin-react": "^3.16.1",
"istanbul-instrumenter-loader": "^3.0.0",
"karma": "^1.7.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon": "^1.0.5",
"karma-sinon-chai": "^1.3.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "^2.0.4",
"lodash": "4.17.4",
"mocha": "^3.5.0",
"npm-check-updates": "^2.12.1",
"npmlog": "^4.1.2",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "^2.1.14",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.1",
"sinon": "^2.1.0",
"sinon-chai": "^2.12.0",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1",
"webpack-notifier": "^1.5.0"
},
"babel": {
"ignore": [
"packages/babel-cli/src/babel-plugin/templates"
]
},
"devEngines": {
"node": ">=4.1 <6",
"npm": ">=3.1 <5"
},
"author": {
"name": "Florian Blouet",
"email": "[email protected]"
},
"main": "dist/common.js",
"bugs": "https://github.com/lostdalek/Phraseanet-common/issues",
"homepage": "https://github.com/lostdalek/Phraseanet-common",
"license": "MIT",
"dependencies": {
"es6-promise": "^4.1.1",
"humane-js": "^3.2.2",
"imports-loader": "^0.7.1",
"jquery": "^3.2.1",
"js-cookie": "^2.1.0",
"pym.js": "^1.3.1"
}
}