-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (48 loc) · 1.44 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
{
"name": "string-dom",
"description": "Create HTML strings using JSX (or functions).",
"main": "dist/string-dom.js",
"module": "dist/string-dom.module.js",
"jsnext:main": "dist/string-dom.module.js",
"version": "0.0.6",
"license": "MIT",
"repository": "callmecavs/string-dom",
"author": {
"name": "Michael Cavalea",
"email": "callmecavs@gmail.com",
"url": "http://callmecavs.com/"
},
"scripts": {
"lint": "eslint src",
"prebuild": "rm -rf dist",
"build": "rollup -c",
"dev": "rollup -c -w -m inline",
"prepublish": "npm run test",
"server": "python -m SimpleHTTPServer 3000",
"pretest": "npm run build",
"test": "npm run lint && mocha --compilers js:babel-register"
},
"keywords": [
"string",
"dom"
],
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-plugin-external-helpers": "^6.18.0",
"babel-plugin-transform-react-jsx": "^6.22.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.22.0",
"chai": "^3.5.0",
"eslint": "^3.13.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"mocha": "^3.2.0",
"rollup": "^0.41.1",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-watch": "^3.2.2"
}
}