-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 2.18 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
{
"name": "sd-range-slider",
"version": "2.0.0",
"description": "A range slider with compressed page usage",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/StratoDem/sd-range-slider.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/StratoDem/sd-range-slider/issues"
},
"homepage": "https://github.com/StratoDem/sd-range-slider",
"scripts": {
"extract-metadata": "mkdirp lib && react-docgen --pretty -e index.js -o lib/metadata.json src/components && node -e \"const fs = require('fs'); const path = require('path'); const m = JSON.parse(fs.readFileSync('./lib/metadata.json')); const r = {}; Object.keys(m).forEach(k => r[k.split(path.sep).join('/')] = m[k]); fs.writeFileSync('./lib/metadata.json', JSON.stringify(r, '\t', 2));\"",
"build-dist": "builder run clean-lib && builder run extract-metadata && webpack --config=config/webpack.config.dev.js --display-error-details",
"build-dist-production": "builder run extract-metadata && webpack -p --config=config/webpack.config.dist.js",
"copy-lib": "copyfiles -u 1 lib/* sd_range_slider",
"install-local": "npm run copy-lib && venv/bin/python setup.py install",
"prepublish": "npm test && npm run build-dist-production && npm run copy-lib",
"publish-all": "npm publish && python setup.py sdist upload",
"publish-pypi": "npm run prepublish && python setup.py sdist upload",
"test": "jest --verbose",
"test-watch": "builder run test-frontend-watch",
"test-debug": "builder run test-frontend-debug",
"uninstall-local": "pip uninstall sd-range-slider -y"
},
"dependencies": {
"@stratodem/js-archetype": "^1.10.0",
"builder": "3.2.2",
"copyfiles": "^1.2.0",
"dash-components-archetype": "^0.2.11",
"material-ui": "^0.19.4",
"ramda": "^0.25.0",
"rc-slider": "^8.5.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"string-format": "^0.5.0"
},
"devDependencies": {
"babel-loader": "^7.1.2",
"dash-components-archetype-dev": "^0.2.11",
"enzyme": "^2.8.2",
"flow-bin": "^0.66.0",
"ify-loader": "^1.1.0",
"jest": "^22.0.4",
"react-test-renderer": "^15.5.4",
"webpack": "^3.8.1"
}
}