This repository has been archived by the owner on Jul 1, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.68 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": "astroid-js",
"version": "0.1",
"description": "message view layer for astroidmail",
"main": "src/main.js",
"repository": "https://github.com/astroidmail/astroid-js",
"author": "Casey Link <[email protected]>",
"license": "GPL-3.0+",
"private": false,
"scripts": {
"build": "NODE_ENV=production rollup -c -i src/main.js -f iife > dist/astroid.js",
"lint": "eslint src test",
"prepare": "ramda-rollup-hack && yarn run lint && yarn run build",
"watch": "yarn run watch:js",
"watch:js": "CHOKIDAR_USEPOLLING=true NODE_ENV=dev rollup -w -c --sourcemap inline -i src/main.js -f iife -o dist/app.js",
"clean": "rm -rf ./dist/*"
},
"dependencies": {
"atom.storage": "^0.5.3",
"hyperx": "^2.3.0",
"karet": "^1.2.2",
"karet.util": "^0.13.1",
"kefir": "^3.7.4",
"partial.lenses": "^11.20.0",
"preact": "^8.2.5",
"preact-compat": "^3.17.0",
"ramda": "^0.24.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-3": "^6.24.1",
"chokidar": "^1.7.0",
"eslint": "^4.7.2",
"livereload": "^0.6.2",
"ramda-rollup-hack": "^0.23.0-alpha1",
"rollup": "^0.50.0",
"rollup-plugin-alias": "^1.3.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-serve": "^0.4.2",
"rollup-plugin-uglify": "^2.0.1"
}
}