This repository was archived by the owner on Apr 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.46 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.46 KB
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
{
"scripts": {
"postinstall": "bower install",
"build:clean": "rm -rf dist output",
"build": "jshint src && jscs src && psa \"src/**/*.purs\" \"bower_components/purescript-*/**/*.purs\" --censor-lib --strict",
"clean": "rimraf output && rimraf .pulp-cache",
"test": "psc \"src/**/*.purs\" \"bower_components/purescript-*/**/*.purs\" \"test/**/*.purs\" && psc-bundle \"output/**/*.js\" --module Test.Main --main Test.Main | node"
},
"devDependencies": {
"bower": "^1.8.2",
"jscs": "^3.0.7",
"jshint": "^2.9.5",
"pulp": "^12.0.1",
"purescript-psa": "^0.6.0",
"rimraf": "^2.6.2"
},
"name": "purescript-rnx",
"description": "RNX is a PureScript interface to React Native",
"version": "0.2.0-alpha",
"main": "src/RNX.js",
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git://github.com/atomicits/purescript-rnx.git"
},
"keywords": [
"purescript",
"rnx",
"react native",
"mobile",
"android",
"ios",
"pux",
"react",
"elm",
"flux",
"redux",
"frp",
"virtual-dom"
],
"author": "Sudhir Kumar <s@atomicits.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/atomicits/purescript-rnx/issues"
},
"dependencies": {
"create-react-class": "^15.6.3"
}
}