forked from leostera/unveil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.59 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
{
"name": "unveil",
"description": "A React-based Reactive Presentation Framework",
"keywords": [
"presentation",
"slides",
"unveil",
"reveal",
"present",
"react",
"reactive",
"rx"
],
"files": [
"lib",
"dist"
],
"author": "Leandro Ostera <[email protected]>",
"contributors": [
{
"name": "Iris Schaffer",
"email": "[email protected]"
}
],
"repository": "https://github.com/ostera/unveil.js",
"bugs": {
"url": "https://github.com/ostera/unveil.js/issues"
},
"homepage": "https://github.com/ostera/unveil.js",
"license": "MIT",
"version": "0.1.13",
"main": "lib/index.js",
"dependencies": {
"babel-plugin-transform-export-extensions": "^6.4.0",
"babel-preset-stage-0": "^6.5.0",
"history": "~1.17.0",
"immutable": "~3.7.6",
"lodash": "^4.13.1",
"marked": "~0.3.5",
"normalize.css": "^3.0.3",
"react": "~0.15.0-alpha.1",
"react-addons-css-transition-group": "~0.15.0-alpha.1",
"react-dom": "~0.15.0-alpha.1",
"rx-history": "~1.0.4",
"rxjs": "~5.0.0-beta.1"
},
"devDependencies": {
"react-addons-test-utils": "~0.15.0-alpha.1",
"babel-plugin-transform-runtime": "~6.4.3",
"babel-plugin-transform-export-extensions": "^6.4.0",
"babel-preset-es2015": "~6.3.13",
"babel-preset-react": "~6.3.13",
"babelify": "~7.2.0",
"browserify": "~6.2.0",
"envify": "~3.0.0",
"jest-cli": "^0.8.2",
"babel-jest": "~6.0.1",
"babel-cli": "~6.0.0",
"reactify": "~1.1.1",
"uglify-js": "~2.4.15",
"cssmin": "^0.4.3",
"watchify": "~2.1.1"
},
"scripts": {
"preversion": "npm run clean && npm run build && npm run package",
"build": "./node_modules/babel-cli/bin/babel.js src -d lib --source-maps inline; sass --update ./styles:./lib/css",
"package": "mkdir -p dist && browserify . -t [envify --NODE_ENV production] src/index.js -o dist/unveil.js && uglifyjs dist/unveil.js -cm -o dist/unveil.min.js && sass --update ./styles:./dist --style compressed",
"test": "jest",
"clean": "rm -rf ./dist ./build ./lib"
},
"browserify": {
"transform": [
"babelify",
"reactify",
"envify"
]
},
"jest": {
"testRunner": "<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2.js",
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules",
"fixtures"
],
"testPathIgnorePatterns": [
"fixtures"
],
"modulePathIgnorePatterns": [
"node_modules",
"build",
"styles",
"<rootDir>/lib"
]
}
}