-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.09 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
{
"name": "@kenvunz/shoelace",
"version": "1.0.1",
"main": "dst/index.js",
"repository": "https://github.com/kenvunz/shoelace.git",
"author": "Ken Vu <[email protected]>",
"license": "MIT",
"dependencies": {
"lodash.get": "^4.4.2"
},
"engines": {
"node": ">=7"
},
"scripts": {
"test": "run-s test:jest",
"test:jest": "jest",
"build:babel": "babel --source-maps inline src -d dst",
"build": "yarn clean:dst && yarn run-p \"build:*\"",
"start": "yarn start:babel",
"start:babel": "yarn clean:dst && run-p \"build:babel -- --watch\"",
"prepare": "run-s test build",
"clean:dst": "rimraf dst"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^20.0.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-module-resolver": "^2.7.1",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-2": "^6.24.1",
"jest": "^20.0.4",
"npm-run-all": "^4.1.1",
"rimraf": "^2.6.1"
}
}