-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.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
{
"name": "sam-simpler",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"distclean": "rimraf ./dist",
"postdistclean": "mkdir dist",
"build:bundle": "browserify src/index.js -d -o dist/bundle.js -t [babelify]",
"watch:build": "watch \"npm run build:bundle\" src",
"serve": "live-server --watch=dist/bundle.js --no-browser",
"start": "npm-run-all -p serve watch:build",
"prestart": "npm run build:bundle",
"build:test": "babel src/*.js --out-dir dist",
"watch:test": "watch \"npm run build:test\" src",
"test": "babel-node ./src/example.spec.js | faucet",
"pretest": "npm run build:test"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"babel-plugin-transform-async-generator-functions": "^6.22.0",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.23.0",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babelify": "^7.3.0",
"browserify": "^14.1.0",
"extend-tape": "^1.2.0",
"faucet": "^0.0.1",
"live-server": "^1.2.0",
"mkdir": "^0.0.2",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.0",
"tape": "^4.6.3",
"tape-arr-equals": "^2.1.2",
"watch": "^1.0.2"
},
"dependencies": {
"bluebird": "^3.4.7",
"dynamics.js": "^1.1.5",
"inferno": "^1.3.0-rc.7",
"inferno-hyperscript": "^1.3.0-rc.7",
"ramda": "^0.23.0",
"rxjs": "^5.1.0"
}
}