-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
76 lines (76 loc) · 2 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
{
"name": "pulp",
"version": "16.0.2",
"description": "A build system for PureScript projects",
"keywords": [
"purescript",
"make",
"build",
"cabal"
],
"author": "Bodil Stokke",
"contributors": [
"Harry Garrood"
],
"license": "LGPL-3.0+",
"homepage": "https://github.com/purescript-contrib/pulp",
"repository": {
"type": "git",
"url": "https://github.com/purescript-contrib/pulp.git"
},
"bin": {
"pulp": "index.js"
},
"main": "pulp.js",
"files": [
"index.js",
"pulp.js",
"src",
"bower.json",
"test-js",
".jshintrc"
],
"engines": {
"node": ">= 4"
},
"scripts": {
"prepare": "bower install && npm run build",
"test": "npm run test:unit && npm run test:integration",
"build": "npm run lint && npm run compile && npm run bundle",
"lint": "jshint src",
"compile": "psa -c \"src/**/*.purs\" \"test/**/*.purs\" \"bower_components/purescript-*/src/**/*.purs\" --censor-lib --censor-codes=ImplicitImport,HidingImport",
"bundle": "purs bundle \"output/*/*.js\" --output pulp.js --module Main --main Main",
"test:unit": "purs bundle \"output/*/*.js\" --output unit-tests.js --module Test.Main --main Test.Main && node unit-tests.js",
"test:integration": "mocha test-js --require babel/register"
},
"dependencies": {
"browserify": "^16.2.3",
"browserify-incremental": "^3.1.1",
"concat-stream": "^2.0.0",
"gaze": "^1.1.3",
"glob": "^7.1.3",
"mold-source-map": "^0.4.0",
"node-static": "^0.7.11",
"read": "^1.0.7",
"sorcery": "^0.10.0",
"temp": "^0.9.0",
"through": "^2.3.8",
"tree-kill": "^1.2.1",
"which": "^1.3.1",
"wordwrap": "1.0.0"
},
"devDependencies": {
"babel": "^5.8.22",
"bower": "^1.8.4",
"chai": "^4.2.0",
"co": "^4.6.0",
"fs-promise": "^2.0.3",
"jshint": "^2.9.7",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"psc-package": "^4.0.1",
"purescript-psa": "^0.7.3",
"semver": "^5.6.0",
"touch": "^3.1.0"
}
}