-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
{
"name": "@photonsh/photon-core",
"description": "photon-core is the core library for Photon",
"version": "0.1.2",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/photonsh/photon-core.git"
},
"license": "MIT",
"author": "Photon <support@photon.sh> (https://photon.sh)",
"bugs": {
"url": "https://github.com/photonsh/photon-core/issues"
},
"keywords": [
"photon",
"highlight",
"syntax",
"nodejs"
],
"homepage": "https://photon.sh",
"dependencies": {
"escape-html": "^1.0.3",
"parse5": "^5.1.0",
"vscode-textmate": "^4.0.1"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"tape": "^4.9.1",
"tap-diff": "^0.1.1"
},
"scripts": {
"build": "babel -d ./dist ./src",
"test": "babel-node ./test"
}
}