-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.45 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.45 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
52
{
"name": "plane.js",
"version": "0.4.0",
"description": "A simple, functional compile to JS syntax.",
"main": "dist/plane.js",
"module": "dist/plane.es.js",
"keywords": [
"javascript",
"language",
"compiler",
"transpiler"
],
"scripts": {
"pretest": "rollup -c build/rollup.tests.js",
"test": "mocha dist/plane.tests.js",
"test:watch": "nodemon --watch src --watch test --exec 'npm test'",
"posttest": "npm run lint",
"build": "rollup -c build/rollup.js",
"postbuild": "babili dist/plane.es.js -o dist/plane.es.min.js && babili dist/plane.js -o dist/plane.min.js",
"lint": "eslint .",
"prepublish": "npm run build && npm test -- --reporter landing"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/davidrhyswhite/plane.js.git"
},
"author": "David Rhys White <david.rhys.white@icloud.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidrhyswhite/plane.js/issues"
},
"homepage": "https://github.com/davidrhyswhite/plane.js#readme",
"devDependencies": {
"babili": "^0.1.4",
"chai": "^4.0.2",
"eslint": "^4.1.1",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.7.0",
"mocha": "^3.4.2",
"nodemon": "^1.11.0",
"rollup": "^0.45.1",
"rollup-plugin-multi-entry": "^2.0.1",
"sinon": "^2.3.6"
},
"bin": {
"plane": "./bin/plane"
},
"preferGlobal": true,
"engines": {
"node": ">=7.9.0"
}
}